結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-19 10:12:38
言語 Crystal
(1.11.2)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 11,243 ms
コンパイル使用メモリ 295,924 KB
実行使用メモリ 203,276 KB
最終ジャッジ日時 2024-06-30 19:42:26
合計ジャッジ時間 17,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
163,088 KB
testcase_01 AC 222 ms
163,112 KB
testcase_02 AC 218 ms
163,116 KB
testcase_03 AC 218 ms
163,080 KB
testcase_04 AC 217 ms
163,108 KB
testcase_05 AC 219 ms
163,136 KB
testcase_06 AC 218 ms
163,256 KB
testcase_07 AC 220 ms
163,160 KB
testcase_08 AC 221 ms
163,080 KB
testcase_09 AC 224 ms
163,112 KB
testcase_10 AC 220 ms
163,268 KB
testcase_11 AC 222 ms
163,316 KB
testcase_12 AC 239 ms
185,900 KB
testcase_13 AC 248 ms
203,276 KB
testcase_14 AC 221 ms
163,628 KB
testcase_15 AC 223 ms
163,108 KB
testcase_16 AC 227 ms
163,232 KB
testcase_17 AC 242 ms
187,824 KB
testcase_18 AC 218 ms
163,116 KB
testcase_19 AC 217 ms
163,116 KB
testcase_20 AC 215 ms
163,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y=gets.not_nil!.split.map &.to_i
n=3200
z=[0]*n*n*3
1.upto(n){|a|n.times{|b|z[a*a+b*b]+=4}}
p z[x,y-x+1].max
0