結果

問題 No.781 円周上の格子点の数え上げ
ユーザー rlangevinrlangevin
提出日時 2023-01-12 22:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,520 KB
最終ジャッジ日時 2024-06-06 04:02:38
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
131,328 KB
testcase_01 AC 100 ms
131,584 KB
testcase_02 AC 98 ms
131,200 KB
testcase_03 AC 97 ms
131,456 KB
testcase_04 AC 100 ms
131,680 KB
testcase_05 AC 99 ms
131,584 KB
testcase_06 AC 104 ms
138,500 KB
testcase_07 AC 108 ms
138,352 KB
testcase_08 AC 143 ms
140,204 KB
testcase_09 AC 146 ms
140,160 KB
testcase_10 AC 107 ms
139,232 KB
testcase_11 AC 108 ms
139,040 KB
testcase_12 AC 323 ms
142,520 KB
testcase_13 AC 329 ms
141,312 KB
testcase_14 AC 114 ms
140,196 KB
testcase_15 AC 111 ms
139,008 KB
testcase_16 AC 104 ms
137,956 KB
testcase_17 AC 234 ms
141,312 KB
testcase_18 AC 134 ms
140,160 KB
testcase_19 AC 128 ms
140,544 KB
testcase_20 AC 131 ms
140,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

X, Y = map(int, input().split())
L = []
D = [0] * (10 ** 7 + 5)
i = 1
while i * i <= Y:
    L.append(i * i)
    D[i * i] += 1
    i += 1

for a in L:
    for b in L:
        if X <= a + b <= Y:
            D[a + b] += 1
        
ans = 0
# print("test", len(D))
# for k, v in D.items():
#     if X <= k <= Y:
#         ans = max(ans, v)
for i in range(X, Y + 1):
    ans = max(ans, D[i])    
print(ans * 4)
0