| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122727 | 罗安博 | 15求n!>m | C++ | Wrong Answer | 1 MS | 268 KB | 324 | 2025-06-21 12:27:59 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n=0,c=0; cin>>m; while(m!=0){ for(c;c<100000000000000000000000000000000000000000000000000;c++){ c=c*c; n++; if(c>m){ cout<<n; return 0; } } } }
------Input------
6876
------Answer-----
8
------Your output-----
6