結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:08:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 309 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 258,576 KB
最終ジャッジ日時 2024-05-02 19:54:01
合計ジャッジ時間 6,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,216 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 46 ms
58,752 KB
testcase_07 AC 47 ms
58,496 KB
testcase_08 AC 82 ms
60,544 KB
testcase_09 AC 80 ms
60,160 KB
testcase_10 AC 53 ms
61,952 KB
testcase_11 AC 55 ms
63,488 KB
testcase_12 AC 1,855 ms
188,648 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())

i = 1
squ = []
while i * i <= y:
    squ.append(i * i)
    i += 1

cnt = {}
l = len(squ)
for s in [0] + squ:
    for q in squ:
        if x <= s + q <= y:
            cnt[s + q] = cnt.get(s + q, 0) + 1
            
ans = max([0] + list(cnt.values()))
print(4 * ans)
        
0