Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147390 | 邹文浠白云六中 | 判断平方数 | C++ | 通过 | 100 | 1 MS | 264 KB | 317 | 2024-05-18 15:00:01 |
#include <iostream> #include <cmath> using namespace std; bool f(double s) { int n = s; if(s != n) return false; return true; } int main() { ios::sync_with_stdio(0); int n; while(cin >> n) { double s = sqrt(n); if(f(s)) cout << 1 << '\n'; else cout << 0 << '\n'; } }