记录编号 | 99053 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO Oct07] 完全平方数 | 最终得分 | 100 | ||
用户昵称 | xly | 是否通过 | 通过 | ||
代码语言 | Pascal | 运行时间 | 0.012 s | ||
提交时间 | 2014-04-25 19:28:57 | 内存使用 | 0.17 MiB | ||
var n,h,a,b:integer; begin assign(input,'squares.in'); assign(output,'squares.out'); reset(input); rewrite(output); read(n); for a:=1 to 500 do for b:=1 to 500 do if a*a=n+(b*b) then h:=h+1; write(h); close(input); close(output); end.