結果

問題 No.781 円周上の格子点の数え上げ
ユーザー noriocnorioc
提出日時 2024-08-28 22:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 217,764 KB
最終ジャッジ日時 2024-08-28 22:02:27
合計ジャッジ時間 4,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,136 KB
testcase_01 AC 38 ms
53,128 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
53,428 KB
testcase_04 AC 38 ms
52,208 KB
testcase_05 AC 39 ms
52,484 KB
testcase_06 AC 45 ms
59,352 KB
testcase_07 AC 66 ms
60,936 KB
testcase_08 AC 280 ms
140,472 KB
testcase_09 AC 264 ms
139,640 KB
testcase_10 AC 46 ms
59,724 KB
testcase_11 AC 45 ms
61,216 KB
testcase_12 AC 301 ms
182,684 KB
testcase_13 AC 350 ms
217,764 KB
testcase_14 AC 56 ms
65,824 KB
testcase_15 AC 43 ms
60,452 KB
testcase_16 AC 43 ms
59,852 KB
testcase_17 AC 205 ms
154,460 KB
testcase_18 AC 176 ms
107,260 KB
testcase_19 AC 173 ms
109,252 KB
testcase_20 AC 175 ms
108,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ps = [0] * (Y+1)
rmax = 1
while (rmax+1) ** 2 <= Y:
    rmax += 1

for x in range(1, rmax+1):
    for y in range(rmax+1):
        k = x*x + y*y
        if k <= Y:
            ps[k] += 1

ans = max(ps[X:Y+1]) * 4
print(ans)
0