結果

問題 No.781 円周上の格子点の数え上げ
ユーザー ゆうなんとかゆうなんとか
提出日時 2019-01-18 01:11:10
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 245 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-07-01 10:13:56
合計ジャッジ時間 11,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
90,368 KB
testcase_01 AC 145 ms
90,240 KB
testcase_02 AC 144 ms
90,368 KB
testcase_03 AC 146 ms
90,368 KB
testcase_04 AC 145 ms
90,240 KB
testcase_05 AC 145 ms
90,240 KB
testcase_06 AC 150 ms
90,368 KB
testcase_07 AC 160 ms
90,240 KB
testcase_08 RE -
testcase_09 TLE -
testcase_10 AC 145 ms
90,240 KB
testcase_11 AC 149 ms
90,368 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 230 ms
90,368 KB
testcase_15 AC 150 ms
90,240 KB
testcase_16 AC 148 ms
90,368 KB
testcase_17 AC 1,303 ms
90,496 KB
testcase_18 AC 1,305 ms
90,496 KB
testcase_19 AC 1,326 ms
90,496 KB
testcase_20 AC 1,343 ms
90,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x, y = gets.strip.split.map(&:to_i)
ans = Array.new(10_000_000, 0)
sqrt = Integer.sqrt y
for i in 1..sqrt
    a = i * i
    for j in 0..sqrt
        b = j * j
        break if a + b > y
        ans[a + b] += 1
    end
end

puts ans[x..y].max * 4
0