結果

問題 No.800 四平方定理
ユーザー AEnAEn
提出日時 2022-05-16 10:44:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 187,136 KB
最終ジャッジ日時 2024-09-14 02:38:56
合計ジャッジ時間 7,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,184 KB
testcase_01 AC 61 ms
63,232 KB
testcase_02 AC 56 ms
62,336 KB
testcase_03 AC 57 ms
62,976 KB
testcase_04 AC 56 ms
62,592 KB
testcase_05 AC 56 ms
62,464 KB
testcase_06 AC 58 ms
63,616 KB
testcase_07 AC 59 ms
63,488 KB
testcase_08 AC 56 ms
63,104 KB
testcase_09 AC 57 ms
63,488 KB
testcase_10 AC 215 ms
124,032 KB
testcase_11 AC 231 ms
131,712 KB
testcase_12 AC 223 ms
130,560 KB
testcase_13 AC 194 ms
127,232 KB
testcase_14 AC 204 ms
131,456 KB
testcase_15 AC 225 ms
131,328 KB
testcase_16 AC 214 ms
132,736 KB
testcase_17 AC 217 ms
132,864 KB
testcase_18 AC 234 ms
132,224 KB
testcase_19 AC 242 ms
132,352 KB
testcase_20 AC 41 ms
51,328 KB
testcase_21 AC 42 ms
51,968 KB
testcase_22 AC 236 ms
132,480 KB
testcase_23 AC 385 ms
187,136 KB
testcase_24 AC 341 ms
187,136 KB
testcase_25 AC 381 ms
186,880 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 41 ms
51,712 KB
testcase_28 AC 344 ms
186,752 KB
testcase_29 AC 366 ms
187,008 KB
testcase_30 AC 349 ms
186,880 KB
testcase_31 AC 324 ms
178,048 KB
testcase_32 AC 352 ms
187,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
NN = N**2
p, n = [0]*(2*NN+1), [0]*(2*NN+1)
for i in range(1, N+1):
    for j in range(1, N+1):
        p[i**2 + j**2] += 1
        a = i**2 - j**2 + D
        if 0 <= a <= 2*NN:
            n[a] += 1
res = 0
for i in range(2*NN+1):
    res += p[i]*n[i]
print(res)
0