Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6043 BaiJunYi 小玉在游泳 C++ 解答错误 0 0 MS 748 KB 309 2020-08-22 12:18:12

Tests(0/30):


#include <iostream> #include <cstdio> using namespace std; int main() { double m, a = 0, h = 0, n = 2, c = n*0.98 ; cin >> m; for(int i=0; i<1000; i++) { h = a + n + c; n = c; c = n*0.98; a = h; if ( m < h) { cout << i; return 0; } } return 0; }


测评信息: