Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
48501 石利伟 倒数和 C++ 通过 100 21 MS 248 KB 198 2022-07-15 22:16:23

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ double s,coun=1; cin>>s; for(double n=2;;n++){ coun+=1.0/n; if(coun>s){ cout<<int(n); return 0; } } return 0; }


测评信息: