记录编号 79542 评测结果 AAAAAAAAAA
题目名称 [Tyvj 1965] 汪星人入侵 最终得分 100
用户昵称 Gravatar铁策 是否通过 通过
代码语言 Pascal 运行时间 0.046 s
提交时间 2013-11-05 21:34:39 内存使用 0.17 MiB
显示代码纯文本
program P1080;
var
n,i,k:longint;
begin
assign(input,'wang.in');
reset(input);
assign(output,'wang.out');
rewrite(output);
readln(n);
for i:=1 to n do
begin
readln(k);
writeln(trunc(sqrt(k)));
end;
end.