結果

問題 No.800 四平方定理
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-07 08:35:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,166 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 203,760 KB
最終ジャッジ日時 2024-07-03 09:18:58
合計ジャッジ時間 16,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,524 KB
testcase_01 AC 60 ms
67,384 KB
testcase_02 AC 52 ms
67,144 KB
testcase_03 AC 49 ms
66,344 KB
testcase_04 AC 49 ms
65,216 KB
testcase_05 AC 51 ms
66,672 KB
testcase_06 AC 53 ms
67,540 KB
testcase_07 AC 54 ms
67,916 KB
testcase_08 AC 58 ms
68,224 KB
testcase_09 AC 55 ms
66,940 KB
testcase_10 AC 469 ms
162,612 KB
testcase_11 AC 501 ms
162,652 KB
testcase_12 AC 492 ms
162,916 KB
testcase_13 AC 491 ms
162,748 KB
testcase_14 AC 512 ms
163,100 KB
testcase_15 AC 512 ms
162,936 KB
testcase_16 AC 533 ms
162,860 KB
testcase_17 AC 538 ms
162,684 KB
testcase_18 AC 543 ms
162,856 KB
testcase_19 AC 493 ms
162,940 KB
testcase_20 AC 32 ms
52,688 KB
testcase_21 AC 34 ms
53,512 KB
testcase_22 AC 525 ms
162,704 KB
testcase_23 AC 1,141 ms
203,524 KB
testcase_24 AC 1,123 ms
203,496 KB
testcase_25 AC 1,142 ms
203,468 KB
testcase_26 AC 34 ms
52,456 KB
testcase_27 AC 34 ms
52,516 KB
testcase_28 AC 1,035 ms
203,744 KB
testcase_29 AC 1,058 ms
203,512 KB
testcase_30 AC 1,086 ms
203,488 KB
testcase_31 AC 925 ms
203,388 KB
testcase_32 AC 1,166 ms
203,760 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