Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147323 | 李树强 | 判断平方数 | C++ | 通过 | 100 | 1 MS | 240 KB | 211 | 2024-05-18 14:38:42 |
#include<iostream> #include<cmath> using namespace std; int main(){ int t; while(cin >> t){ int tmp = sqrt(t); if(tmp * tmp == t) cout << 1 << endl; else cout << 0 << endl; } return 0; }