結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-19 09:18:25
言語 Crystal
(1.11.2)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 11,474 ms
コンパイル使用メモリ 296,316 KB
実行使用メモリ 202,412 KB
最終ジャッジ日時 2024-06-30 19:42:45
合計ジャッジ時間 17,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
163,108 KB
testcase_01 AC 231 ms
163,140 KB
testcase_02 AC 242 ms
163,084 KB
testcase_03 AC 242 ms
163,144 KB
testcase_04 AC 241 ms
163,072 KB
testcase_05 AC 236 ms
163,088 KB
testcase_06 AC 234 ms
163,076 KB
testcase_07 AC 231 ms
163,116 KB
testcase_08 AC 244 ms
163,100 KB
testcase_09 AC 244 ms
163,080 KB
testcase_10 AC 240 ms
163,200 KB
testcase_11 AC 239 ms
163,340 KB
testcase_12 AC 260 ms
184,564 KB
testcase_13 AC 267 ms
202,412 KB
testcase_14 AC 240 ms
163,620 KB
testcase_15 AC 238 ms
163,156 KB
testcase_16 AC 244 ms
163,192 KB
testcase_17 AC 253 ms
186,428 KB
testcase_18 AC 227 ms
163,116 KB
testcase_19 AC 236 ms
163,144 KB
testcase_20 AC 238 ms
163,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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