結果

問題 No.800 四平方定理
ユーザー AEnAEn
提出日時 2022-05-16 10:23:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 357,084 KB
最終ジャッジ日時 2024-09-14 02:13:20
合計ジャッジ時間 26,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
82,236 KB
testcase_01 AC 88 ms
83,852 KB
testcase_02 AC 81 ms
77,828 KB
testcase_03 AC 83 ms
81,004 KB
testcase_04 AC 79 ms
78,040 KB
testcase_05 AC 85 ms
80,088 KB
testcase_06 AC 96 ms
86,224 KB
testcase_07 AC 85 ms
80,428 KB
testcase_08 AC 97 ms
86,212 KB
testcase_09 AC 92 ms
83,476 KB
testcase_10 AC 1,709 ms
251,984 KB
testcase_11 AC 1,926 ms
299,264 KB
testcase_12 AC 1,949 ms
299,044 KB
testcase_13 AC 1,817 ms
269,948 KB
testcase_14 TLE -
testcase_15 AC 1,995 ms
299,348 KB
testcase_16 TLE -
testcase_17 AC 1,995 ms
299,912 KB
testcase_18 AC 1,973 ms
299,552 KB
testcase_19 AC 1,974 ms
299,604 KB
testcase_20 AC 42 ms
54,012 KB
testcase_21 AC 42 ms
54,868 KB
testcase_22 AC 1,980 ms
299,612 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, D = map(int, input().split())

p, n = defaultdict(int), defaultdict(int)
for i in range(1, N+1):
    for j in range(1, N+1):
        p[i**2 + j**2] += 1
        n[i**2 - j**2] += 1

res = 0
for key in p.keys():
    res += p[key]*n[D-key]
print(res)
0