Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
120122 | 刘益梵 | 12自由落体 | C++ | Wrong Answer | 1 MS | 272 KB | 151 | 2025-05-24 10:34:05 |
#include<bits/stdc++.h> using namespace std; int main(){ double a=100; for(int n=0;n<=10;n++){ a=a/2; } printf("%.6lf",a); return 0; }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
0.048828