Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
114117 | 翁思宸 | 求序列的前n项和 | C++ | Wrong Answer | 0 MS | 272 KB | 429 | 2025-03-21 19:34:49 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double s=0; int i=1,k; cin>>k; for(i=1;;i++){ s+=1.0/i; if(s>k){ cout<<i; break; } } return 0; }
------Input------
3
------Answer-----
5.16667
------Your output-----
11