結果

問題 No.800 四平方定理
ユーザー ntudantuda
提出日時 2024-02-25 19:53:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 125,672 KB
最終ジャッジ日時 2024-09-29 11:09:33
合計ジャッジ時間 4,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,776 KB
testcase_01 AC 42 ms
61,824 KB
testcase_02 AC 42 ms
61,568 KB
testcase_03 AC 43 ms
61,056 KB
testcase_04 AC 44 ms
61,184 KB
testcase_05 AC 44 ms
62,080 KB
testcase_06 AC 42 ms
62,336 KB
testcase_07 AC 44 ms
61,696 KB
testcase_08 AC 47 ms
61,312 KB
testcase_09 AC 46 ms
62,208 KB
testcase_10 AC 101 ms
92,288 KB
testcase_11 AC 113 ms
96,640 KB
testcase_12 AC 120 ms
96,640 KB
testcase_13 AC 105 ms
93,440 KB
testcase_14 AC 106 ms
96,512 KB
testcase_15 AC 117 ms
96,384 KB
testcase_16 AC 116 ms
97,280 KB
testcase_17 AC 106 ms
97,152 KB
testcase_18 AC 129 ms
96,256 KB
testcase_19 AC 113 ms
96,896 KB
testcase_20 AC 34 ms
51,840 KB
testcase_21 AC 33 ms
52,224 KB
testcase_22 AC 126 ms
96,128 KB
testcase_23 AC 215 ms
124,288 KB
testcase_24 AC 186 ms
124,676 KB
testcase_25 AC 203 ms
123,908 KB
testcase_26 AC 35 ms
52,124 KB
testcase_27 AC 35 ms
52,272 KB
testcase_28 AC 192 ms
123,484 KB
testcase_29 AC 194 ms
125,672 KB
testcase_30 AC 183 ms
124,144 KB
testcase_31 AC 170 ms
119,716 KB
testcase_32 AC 187 ms
123,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())

X = []
for i in range(N + 1):
    X.append(i * i)

L = 2 * X[N] + 1
Y = [0] * (L)


for i in range(1, N + 1):
    for j in range(1, N + 1):
        Y[X[i] + X[j]] += 1
ans = 0
for i in range(1, N + 1):
    for j in range(1, N + 1):
        t = D + X[i] - X[j]
        if 0 <= t < L:
            ans += Y[t]

print(ans)
0