結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 AC 44 ms
51,584 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 44 ms
52,096 KB
testcase_06 AC 48 ms
58,496 KB
testcase_07 AC 54 ms
58,496 KB
testcase_08 AC 83 ms
61,056 KB
testcase_09 AC 87 ms
60,416 KB
testcase_10 AC 53 ms
61,568 KB
testcase_11 AC 57 ms
63,232 KB
testcase_12 AC 1,867 ms
188,572 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)
ans = 0
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(ans, cnt[s + q])
            
print(4 * ans)
        
0