結果

問題 No.800 四平方定理
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-17 22:07:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,772 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 303,636 KB
最終ジャッジ日時 2024-07-07 23:19:12
合計ジャッジ時間 23,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,844 KB
testcase_01 AC 61 ms
75,272 KB
testcase_02 AC 57 ms
73,700 KB
testcase_03 AC 58 ms
74,432 KB
testcase_04 AC 55 ms
72,116 KB
testcase_05 AC 59 ms
73,888 KB
testcase_06 AC 67 ms
78,604 KB
testcase_07 AC 60 ms
74,508 KB
testcase_08 AC 70 ms
78,604 KB
testcase_09 AC 63 ms
76,764 KB
testcase_10 AC 730 ms
251,448 KB
testcase_11 AC 783 ms
260,148 KB
testcase_12 AC 795 ms
259,536 KB
testcase_13 AC 734 ms
259,108 KB
testcase_14 AC 790 ms
260,336 KB
testcase_15 AC 815 ms
260,116 KB
testcase_16 AC 786 ms
246,880 KB
testcase_17 AC 791 ms
246,712 KB
testcase_18 AC 802 ms
246,348 KB
testcase_19 AC 778 ms
246,488 KB
testcase_20 AC 35 ms
55,204 KB
testcase_21 AC 36 ms
53,768 KB
testcase_22 AC 791 ms
246,868 KB
testcase_23 AC 1,772 ms
303,464 KB
testcase_24 AC 1,743 ms
303,636 KB
testcase_25 AC 1,664 ms
294,496 KB
testcase_26 AC 36 ms
53,536 KB
testcase_27 AC 35 ms
53,828 KB
testcase_28 AC 1,681 ms
303,136 KB
testcase_29 AC 1,703 ms
303,400 KB
testcase_30 AC 1,682 ms
303,252 KB
testcase_31 AC 1,473 ms
288,436 KB
testcase_32 AC 1,748 ms
303,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, d = map(int, input().split())

cnt = defaultdict(int)
for x in range(1, n+1):
    for y in range(1, n+1):
        tmp = x**2 + y**2
        cnt[tmp] += 1

ans = 0
for z in range(1, n+1):
    for w in range(1, n+1):
        tmp = w**2 + d - z**2
        ans += cnt[tmp]
print(ans)
0