結果

問題 No.781 円周上の格子点の数え上げ
ユーザー rlangevinrlangevin
提出日時 2023-01-12 22:15:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 278,104 KB
最終ジャッジ日時 2024-06-06 03:41:59
合計ジャッジ時間 6,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,624 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 49 ms
59,904 KB
testcase_07 AC 50 ms
60,672 KB
testcase_08 AC 84 ms
64,000 KB
testcase_09 AC 84 ms
63,872 KB
testcase_10 AC 57 ms
63,872 KB
testcase_11 AC 62 ms
65,408 KB
testcase_12 AC 1,660 ms
203,076 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

X, Y = map(int, input().split())
L = []
D = defaultdict(int)
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
for k, v in D.items():
    if X <= k <= Y:
        ans = max(ans, v)
print(ans * 4)
0