結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,028 KB
testcase_01 AC 40 ms
52,004 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 40 ms
58,880 KB
testcase_07 AC 41 ms
58,752 KB
testcase_08 AC 78 ms
60,288 KB
testcase_09 AC 73 ms
60,032 KB
testcase_10 AC 45 ms
61,952 KB
testcase_11 AC 49 ms
63,872 KB
testcase_12 AC 1,326 ms
188,504 KB
testcase_13 TLE -
testcase_14 AC 62 ms
67,968 KB
testcase_15 AC 43 ms
59,776 KB
testcase_16 AC 42 ms
57,984 KB
testcase_17 AC 1,478 ms
189,604 KB
testcase_18 AC 62 ms
60,544 KB
testcase_19 AC 62 ms
60,288 KB
testcase_20 AC 64 ms
61,260 KB
権限があれば一括ダウンロードができます

ソースコード

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