Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147442 | dadsafdfe | 判断平方数 | C++ | 输出超限 | 0 | 7 MS | 244 KB | 310 | 2024-05-18 15:20:23 |
#include <iostream> #include <cmath> using namespace std; bool f(int x){ int l=sqrt(x); int r=sqrt(x); if(l*r==x){ return true; }else { return false; } } int main(){ for(int i=1;;i++){ int x; cin>>x; if(f(x)){ cout<<1<<endl; }else { cout<<0<<endl; } } return 0; }