結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:09:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 300 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 188,640 KB
最終ジャッジ日時 2024-11-23 13:59:28
合計ジャッジ時間 7,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,112 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 41 ms
58,240 KB
testcase_07 AC 41 ms
58,752 KB
testcase_08 AC 78 ms
60,288 KB
testcase_09 AC 74 ms
60,416 KB
testcase_10 AC 47 ms
61,568 KB
testcase_11 AC 48 ms
63,360 KB
testcase_12 AC 1,376 ms
188,640 KB
testcase_13 TLE -
testcase_14 AC 59 ms
66,944 KB
testcase_15 AC 44 ms
60,032 KB
testcase_16 AC 41 ms
58,880 KB
testcase_17 AC 1,361 ms
188,596 KB
testcase_18 AC 64 ms
60,032 KB
testcase_19 AC 62 ms
60,544 KB
testcase_20 AC 62 ms
60,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

cnt = {x:0}
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(cnt.values())
print(4 * ans)
        
0