結果

問題 No.781 円周上の格子点の数え上げ
ユーザー MineMine
提出日時 2020-09-15 14:00:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 218,420 KB
最終ジャッジ日時 2024-06-22 01:42:33
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
139,872 KB
testcase_01 AC 210 ms
139,684 KB
testcase_02 AC 213 ms
140,372 KB
testcase_03 AC 206 ms
139,936 KB
testcase_04 AC 204 ms
140,416 KB
testcase_05 AC 206 ms
139,192 KB
testcase_06 AC 208 ms
139,684 KB
testcase_07 AC 215 ms
140,316 KB
testcase_08 AC 214 ms
140,148 KB
testcase_09 AC 206 ms
139,432 KB
testcase_10 AC 207 ms
140,080 KB
testcase_11 AC 213 ms
140,684 KB
testcase_12 AC 237 ms
182,588 KB
testcase_13 AC 251 ms
218,420 KB
testcase_14 AC 215 ms
140,408 KB
testcase_15 AC 210 ms
140,000 KB
testcase_16 AC 207 ms
140,148 KB
testcase_17 AC 247 ms
187,092 KB
testcase_18 AC 209 ms
139,820 KB
testcase_19 AC 216 ms
139,628 KB
testcase_20 AC 216 ms
139,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())
num = [0]*(10**7+1)
for a in range(3164):
    for b in range(1, 3164):
        if a**2 + b**2 > 10**7:
            break
        num[a**2+b**2] += 1

print(max(num[x:y+1])*4)
0