結果

問題 No.800 四平方定理
ユーザー H3PO4H3PO4
提出日時 2021-02-07 10:35:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 413,776 KB
最終ジャッジ日時 2024-07-03 23:31:40
合計ジャッジ時間 28,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
81,212 KB
testcase_01 AC 80 ms
80,492 KB
testcase_02 AC 75 ms
76,852 KB
testcase_03 AC 75 ms
78,240 KB
testcase_04 AC 74 ms
75,648 KB
testcase_05 AC 73 ms
78,420 KB
testcase_06 AC 86 ms
84,704 KB
testcase_07 AC 76 ms
79,328 KB
testcase_08 AC 84 ms
84,076 KB
testcase_09 AC 82 ms
81,144 KB
testcase_10 AC 1,191 ms
243,708 KB
testcase_11 AC 1,381 ms
290,600 KB
testcase_12 AC 1,463 ms
289,376 KB
testcase_13 AC 1,411 ms
254,768 KB
testcase_14 AC 1,446 ms
290,604 KB
testcase_15 AC 1,430 ms
289,760 KB
testcase_16 AC 1,376 ms
291,168 KB
testcase_17 AC 1,417 ms
291,020 KB
testcase_18 AC 1,507 ms
290,832 KB
testcase_19 AC 1,505 ms
290,872 KB
testcase_20 AC 40 ms
55,500 KB
testcase_21 AC 41 ms
55,204 KB
testcase_22 AC 1,441 ms
291,320 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 41 ms
54,920 KB
testcase_27 AC 40 ms
53,772 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from collections import defaultdict

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

sq = tuple(i ** 2 for i in range(1, N + 1))
xy, zw = defaultdict(int), defaultdict(int)
for i, j in itertools.combinations(sq, 2):
    xy[i + j] += 2
    zw[i - j] += 1
    zw[j - i] += 1
for i in sq:
    xy[2 * i] += 1
zw[0] += N
ans = 0
zw = dict(zw)
for k, v in xy.items():
    if k - D in zw:
        ans += v * zw[k - D]
print(ans)
0