結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
68,352 KB
testcase_01 AC 61 ms
72,576 KB
testcase_02 AC 57 ms
71,552 KB
testcase_03 AC 58 ms
71,552 KB
testcase_04 AC 56 ms
70,016 KB
testcase_05 AC 55 ms
71,040 KB
testcase_06 AC 62 ms
74,496 KB
testcase_07 AC 61 ms
72,320 KB
testcase_08 AC 67 ms
74,624 KB
testcase_09 AC 63 ms
73,344 KB
testcase_10 AC 718 ms
188,268 KB
testcase_11 AC 787 ms
200,704 KB
testcase_12 AC 774 ms
200,596 KB
testcase_13 AC 756 ms
208,760 KB
testcase_14 AC 772 ms
200,828 KB
testcase_15 AC 783 ms
200,660 KB
testcase_16 AC 804 ms
200,988 KB
testcase_17 AC 810 ms
200,684 KB
testcase_18 AC 791 ms
200,828 KB
testcase_19 AC 758 ms
200,836 KB
testcase_20 AC 36 ms
54,492 KB
testcase_21 AC 35 ms
55,068 KB
testcase_22 AC 823 ms
200,596 KB
testcase_23 AC 1,583 ms
254,968 KB
testcase_24 AC 1,505 ms
255,256 KB
testcase_25 AC 1,564 ms
254,904 KB
testcase_26 AC 35 ms
53,840 KB
testcase_27 AC 34 ms
55,248 KB
testcase_28 AC 1,409 ms
254,848 KB
testcase_29 AC 1,591 ms
255,228 KB
testcase_30 AC 1,613 ms
254,780 KB
testcase_31 AC 1,472 ms
254,328 KB
testcase_32 AC 1,623 ms
255,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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