結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,120 KB
testcase_01 AC 69 ms
74,880 KB
testcase_02 AC 66 ms
71,808 KB
testcase_03 AC 71 ms
73,984 KB
testcase_04 AC 63 ms
70,784 KB
testcase_05 AC 69 ms
72,704 KB
testcase_06 AC 72 ms
77,824 KB
testcase_07 AC 68 ms
74,624 KB
testcase_08 AC 70 ms
77,568 KB
testcase_09 AC 66 ms
75,008 KB
testcase_10 AC 805 ms
240,552 KB
testcase_11 AC 854 ms
241,892 KB
testcase_12 AC 865 ms
241,824 KB
testcase_13 AC 845 ms
241,028 KB
testcase_14 AC 895 ms
241,784 KB
testcase_15 AC 891 ms
242,036 KB
testcase_16 AC 886 ms
241,916 KB
testcase_17 AC 893 ms
242,320 KB
testcase_18 AC 881 ms
242,180 KB
testcase_19 AC 860 ms
242,100 KB
testcase_20 AC 41 ms
53,760 KB
testcase_21 AC 39 ms
53,376 KB
testcase_22 AC 899 ms
241,912 KB
testcase_23 AC 1,898 ms
266,260 KB
testcase_24 AC 1,859 ms
266,024 KB
testcase_25 AC 1,758 ms
259,360 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 39 ms
53,632 KB
testcase_28 AC 1,736 ms
266,180 KB
testcase_29 AC 1,778 ms
265,932 KB
testcase_30 AC 1,796 ms
266,080 KB
testcase_31 AC 1,649 ms
261,440 KB
testcase_32 AC 1,831 ms
266,000 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(x, n+1):
        if x == y:
            cnt[x**2+y**2] += 1
        else:
            cnt[x**2+y**2] += 2

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