Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147445 dadsafdfe 判断平方数 C++ 输出超限 0 4 MS 244 KB 328 2024-05-18 15:21:54

Tests(0/4):


#include <iostream> #include <cmath> using namespace std; bool f(int x){ long long l=sqrt(x); long long r=sqrt(x); if(l*r==x){ return true; }else { return false; } } int main(){ for(int i=1;;i++){ long long x; cin>>x; if(f(x)){ cout<<1<<endl; }else { cout<<0<<endl; } } return 0; }


测评信息: