Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5919 | Tracy | 小玉在游泳 | C++ | 通过 | 100 | 0 MS | 792 KB | 239 | 2020-08-20 15:35:10 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main () { double g, m=0, s=0, i, r=1; cin >> g; for (s=0; m<g; s++) { m+=2*r; r*=0.98; } cout << s; return 0; }