Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102345 | 唐诗阳 | 12自由落体 | C++ | Wrong Answer | 1 MS | 264 KB | 283 | 2024-12-21 15:12:07 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int j=100; for(int i=100;i>=10;i/=10 ){ j/=2; } cout<<j; return 0; }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
25