結果

問題 No.800 四平方定理
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-29 03:13:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,265 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 203,392 KB
最終ジャッジ日時 2024-06-10 18:08:07
合計ジャッジ時間 17,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,360 KB
testcase_01 AC 55 ms
65,920 KB
testcase_02 AC 55 ms
65,280 KB
testcase_03 AC 56 ms
65,792 KB
testcase_04 AC 51 ms
64,896 KB
testcase_05 AC 52 ms
65,280 KB
testcase_06 AC 58 ms
67,328 KB
testcase_07 AC 57 ms
66,048 KB
testcase_08 AC 57 ms
67,072 KB
testcase_09 AC 56 ms
66,816 KB
testcase_10 AC 501 ms
162,372 KB
testcase_11 AC 561 ms
162,560 KB
testcase_12 AC 552 ms
162,432 KB
testcase_13 AC 564 ms
162,660 KB
testcase_14 AC 599 ms
162,560 KB
testcase_15 AC 586 ms
162,560 KB
testcase_16 AC 615 ms
162,432 KB
testcase_17 AC 599 ms
162,688 KB
testcase_18 AC 577 ms
162,516 KB
testcase_19 AC 626 ms
162,784 KB
testcase_20 AC 36 ms
51,456 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 AC 598 ms
162,816 KB
testcase_23 AC 1,265 ms
203,136 KB
testcase_24 AC 1,226 ms
203,392 KB
testcase_25 AC 1,241 ms
203,136 KB
testcase_26 AC 36 ms
52,224 KB
testcase_27 AC 35 ms
51,840 KB
testcase_28 AC 1,139 ms
203,264 KB
testcase_29 AC 1,151 ms
203,264 KB
testcase_30 AC 1,252 ms
203,392 KB
testcase_31 AC 1,029 ms
203,136 KB
testcase_32 AC 1,251 ms
203,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())

d1 = {}
for x in range(1, n+1):
    for y in range(1, n+1):
        s = x**2+y**2
        if s in d1:
            d1[s] += 1
        else:
            d1[s] = 1
ans = 0
for z in range(1, n+1):
    for w in range(1, n+1):
        s = z**2-w**2
        if d-s in d1:
            ans += d1[d-s]
print(ans)
0