Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147340 梁煜然 判断平方数 C++ 通过 100 1 MS 268 KB 340 2024-05-18 14:43:19

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int i=0; int s[10005]; double a[10005]; void calc(double a){ double temp=sqrt(a); for(int i=1;i<=100000;i++){ if(temp==i){ cout<<1<<endl; return; } } cout<<0<<endl; return; } int main(){ while(cin>>a[i])i++; for(int k=0;k<i;k++)calc(a[k]); return 0; }


测评信息: