记录编号 135001 评测结果 AAAAAAAAAA
题目名称 [Tyvj 1965] 汪星人入侵 最终得分 100
用户昵称 Gravatar乌龙猹 是否通过 通过
代码语言 C++ 运行时间 0.027 s
提交时间 2014-10-31 14:24:07 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<cctype>
#include<cmath>
using namespace std;

int ret;
char ch;
int qin()
{
    ret=0;
    while(ch=getchar(),!isdigit(ch));
    while(ret=ret*10+ch-'0',ch=getchar(),isdigit(ch));
    return ret;
}

int T;

int main()
{
    freopen("wang.in","r",stdin);
    freopen("wang.out","w",stdout);
    T=qin();
	for(int i=1;i<=T;i++)
	{
		int x;
		x=qin();
		printf("%d\n",int(sqrt(x)));
	}
    return 0;
}