結果

問題 No.800 四平方定理
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-29 03:05:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 444 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 324,692 KB
最終ジャッジ日時 2024-06-10 18:07:16
合計ジャッジ時間 22,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,736 KB
testcase_01 AC 67 ms
74,496 KB
testcase_02 AC 63 ms
71,808 KB
testcase_03 AC 63 ms
72,704 KB
testcase_04 AC 62 ms
71,168 KB
testcase_05 AC 65 ms
72,448 KB
testcase_06 AC 70 ms
77,440 KB
testcase_07 AC 64 ms
73,344 KB
testcase_08 AC 70 ms
77,184 KB
testcase_09 AC 68 ms
74,752 KB
testcase_10 AC 865 ms
227,444 KB
testcase_11 AC 966 ms
235,088 KB
testcase_12 AC 957 ms
235,172 KB
testcase_13 AC 908 ms
226,224 KB
testcase_14 AC 972 ms
235,340 KB
testcase_15 AC 971 ms
235,368 KB
testcase_16 AC 957 ms
233,964 KB
testcase_17 AC 978 ms
233,960 KB
testcase_18 AC 966 ms
234,108 KB
testcase_19 AC 959 ms
233,852 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 993 ms
233,960 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 35 ms
51,840 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,947 ms
289,300 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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

d2 = {}
for z in range(1, n+1):
    for w in range(1, n+1):
        s = z**2-w**2
        if s in d2:
            d2[s] += 1
        else:
            d2[s] = 1

ans = 0
for k in d1.keys():
    if d-k in d2:
        ans += d1[k]*d2[d-k]
print(ans)
0