Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
21209 王兮 倒数和 C++ 通过 100 42 MS 252 KB 198 2021-06-26 20:06:43

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int s,n=1; double d1=1.5,d2=1; int main(){ cin>>s; while(!(d1>s&&d2<=s)){ n++; d1+=1.0/(n+1); d2+=1.0/n; } cout<<n+1; return 0; }


测评信息: