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

Tests(0/30):


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


测评信息: