Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1614 | 吴奕希 | 12自由落体 | C++ | Wrong Answer | 0 MS | 260 KB | 164 | 2023-10-28 17:45:31 |
# include<iostream> using namespace std; int main() { int a = 100; for(int i = 0; i < 10; i++) { a /= 2.0; } printf("%.6f", a); }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
0.000000