Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147475 於子轩bylz 判断平方数 C++ 通过 100 1 MS 248 KB 221 2024-05-18 15:29:42

Tests(4/4):


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


测评信息: