結果

問題 No.781 円周上の格子点の数え上げ
ユーザー yansi819yansi819
提出日時 2024-05-13 10:00:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 141,500 KB
最終ジャッジ日時 2024-05-13 10:00:48
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
130,900 KB
testcase_01 AC 62 ms
131,496 KB
testcase_02 AC 62 ms
131,444 KB
testcase_03 AC 61 ms
130,228 KB
testcase_04 AC 63 ms
131,084 KB
testcase_05 AC 61 ms
131,988 KB
testcase_06 AC 65 ms
139,056 KB
testcase_07 AC 69 ms
139,388 KB
testcase_08 AC 243 ms
139,264 KB
testcase_09 AC 223 ms
139,992 KB
testcase_10 AC 66 ms
137,540 KB
testcase_11 AC 67 ms
138,928 KB
testcase_12 AC 244 ms
140,736 KB
testcase_13 AC 253 ms
141,500 KB
testcase_14 AC 75 ms
138,244 KB
testcase_15 AC 72 ms
138,964 KB
testcase_16 AC 67 ms
138,132 KB
testcase_17 AC 169 ms
140,028 KB
testcase_18 AC 155 ms
140,392 KB
testcase_19 AC 158 ms
139,748 KB
testcase_20 AC 168 ms
140,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())
cnt = [0] * (10000001)
maxR = 0
while maxR * maxR <= Y:
    maxR += 1
maxR -= 1
for x in range(1, maxR + 1):
    for y in range(maxR + 1):
        if x * x + y * y <= Y:
            cnt[x * x + y * y] += 1

ans = 0
for i in range(X, Y + 1):
    if ans < cnt[i]:
        ans = cnt[i]
print(ans * 4)
0