Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147304 I am BM 判断平方数 C++ 通过 100 2 MS 244 KB 190 2024-05-18 14:35:39

Tests(4/4):


#include <bits/stdc++.h> using namespace std; int a; int main() { while (cin>>a) { if (sqrt(a)==floor(sqrt(a))) cout<<1; else cout<<0; cout<<endl; } return 0; }


测评信息: