Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
48498 石利伟 倒数和 C++ 解答错误 10 0 MS 256 KB 228 2022-07-15 22:14:59

Tests(1/10):


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


测评信息: