Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119273 | 刘益梵 | 12自由落体 | C++ | Wrong Answer | 0 MS | 264 KB | 154 | 2025-05-17 12:13:45 |
#include<bits/stdc++.h> using namespace std; int main(){ long long n,x=100,y=2,m=10; for(n=0;n<=m;n++){ x/=y; } cout<<x; return 0; }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
0