結果

問題 No.781 円周上の格子点の数え上げ
ユーザー toyuzukotoyuzuko
提出日時 2020-06-02 18:19:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 218,368 KB
最終ジャッジ日時 2024-11-24 06:14:59
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
140,032 KB
testcase_01 AC 422 ms
140,032 KB
testcase_02 AC 415 ms
139,648 KB
testcase_03 AC 422 ms
139,904 KB
testcase_04 AC 423 ms
139,904 KB
testcase_05 AC 422 ms
139,648 KB
testcase_06 AC 426 ms
139,776 KB
testcase_07 AC 427 ms
139,904 KB
testcase_08 AC 425 ms
139,776 KB
testcase_09 AC 425 ms
139,904 KB
testcase_10 AC 426 ms
140,288 KB
testcase_11 AC 427 ms
140,672 KB
testcase_12 AC 473 ms
182,912 KB
testcase_13 AC 513 ms
218,368 KB
testcase_14 AC 421 ms
141,056 KB
testcase_15 AC 422 ms
139,904 KB
testcase_16 AC 425 ms
140,160 KB
testcase_17 AC 474 ms
186,496 KB
testcase_18 AC 423 ms
139,904 KB
testcase_19 AC 421 ms
139,904 KB
testcase_20 AC 418 ms
140,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())

square = [i ** 2 for i in range(4000)]
count = [0 for i in range(10**7 + 1)]

for i in range(4000):
    for j in range(1, 4000):
        k = square[i] + square[j]
        if k <= 10**7:
            count[k] += 1

print(max(count[X: Y + 1]) * 4)
0