Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105146 | 唐诗阳 | 13自由落体 | C++ | Wrong Answer | 0 MS | 264 KB | 338 | 2025-01-12 15:13:40 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double h=100,m=100; for(int i=10;i>0;i--){ h/=2; m+=h*2; } printf("%.6lf",h); cout<<" "; printf("%.6lf",m); }
------Input------
0
------Answer-----
299.804688 0.097656
------Your output-----
0.097656 299.804688