結果

問題 No.781 円周上の格子点の数え上げ
ユーザー lloyzlloyz
提出日時 2022-06-01 22:40:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 599 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 445,064 KB
最終ジャッジ日時 2024-09-21 01:45:09
合計ジャッジ時間 30,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,969 ms
264,480 KB
testcase_01 AC 1,970 ms
257,232 KB
testcase_02 AC 1,978 ms
257,456 KB
testcase_03 AC 1,982 ms
257,656 KB
testcase_04 AC 1,832 ms
257,460 KB
testcase_05 AC 1,966 ms
257,432 KB
testcase_06 AC 1,964 ms
257,176 KB
testcase_07 AC 1,888 ms
257,260 KB
testcase_08 AC 1,969 ms
257,216 KB
testcase_09 AC 1,835 ms
257,472 KB
testcase_10 AC 1,930 ms
257,200 KB
testcase_11 AC 1,956 ms
257,348 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

Sq = [i**2 for i in range(3201)]
PointCounter = defaultdict(int)
for i in range(3201):
    for j in range(i, 3201):
        if Sq[i] + Sq[j] > 10**7:
            break
        if i == j:
            if i == 0:
                continue
            else:
                PointCounter[Sq[i] + Sq[j]] += 4
        else:
            if i == 0:
                PointCounter[Sq[j]] += 4
            else:
                PointCounter[Sq[i] + Sq[j]] += 8

x, y = map(int, input().split())
ans = 0
for i in range(x, y + 1):
    ans = max(ans, PointCounter[i])
print(ans)
0