Run ID:122727
提交时间: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; } } } }