結果

問題 No.800 四平方定理
ユーザー rlangevinrlangevin
提出日時 2022-08-20 11:40:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 253,460 KB
最終ジャッジ日時 2024-10-09 05:04:44
合計ジャッジ時間 18,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
67,768 KB
testcase_01 AC 61 ms
70,556 KB
testcase_02 AC 57 ms
67,820 KB
testcase_03 AC 59 ms
69,412 KB
testcase_04 AC 58 ms
68,980 KB
testcase_05 AC 62 ms
70,672 KB
testcase_06 AC 63 ms
71,808 KB
testcase_07 AC 66 ms
74,252 KB
testcase_08 AC 74 ms
78,940 KB
testcase_09 AC 62 ms
70,904 KB
testcase_10 AC 589 ms
202,152 KB
testcase_11 AC 612 ms
202,192 KB
testcase_12 AC 687 ms
221,436 KB
testcase_13 AC 447 ms
164,500 KB
testcase_14 AC 493 ms
179,696 KB
testcase_15 AC 680 ms
221,344 KB
testcase_16 AC 501 ms
179,532 KB
testcase_17 AC 467 ms
185,252 KB
testcase_18 AC 864 ms
246,768 KB
testcase_19 AC 892 ms
247,056 KB
testcase_20 AC 40 ms
54,916 KB
testcase_21 AC 40 ms
54,116 KB
testcase_22 AC 867 ms
237,108 KB
testcase_23 AC 1,517 ms
250,600 KB
testcase_24 AC 967 ms
248,628 KB
testcase_25 AC 1,546 ms
250,224 KB
testcase_26 AC 40 ms
54,020 KB
testcase_27 AC 40 ms
54,028 KB
testcase_28 AC 863 ms
253,460 KB
testcase_29 AC 1,174 ms
244,340 KB
testcase_30 AC 986 ms
253,368 KB
testcase_31 AC 907 ms
246,896 KB
testcase_32 AC 995 ms
239,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


N, D = map(int, input().split())
maxv = N * N + D + 5
S = defaultdict(int)
for i in range(1, N + 1):
    for j in range(1, N + 1):
        v = D + i * i - j * j
        if v < 0:
            break
        S[v] += 1
        
ans = 0
for i in range(1, N + 1):
    for j in range(1, N + 1):
        v = i * i + j * j
        if v >= maxv - 1:
            break
        ans += S[v]
print(ans)
0