結果

問題 No.800 四平方定理
ユーザー H3PO4H3PO4
提出日時 2021-02-07 10:39:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 216,788 KB
最終ジャッジ日時 2024-07-03 23:37:03
合計ジャッジ時間 9,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
76,928 KB
testcase_01 AC 69 ms
79,744 KB
testcase_02 AC 67 ms
78,464 KB
testcase_03 AC 61 ms
78,080 KB
testcase_04 AC 65 ms
78,464 KB
testcase_05 AC 66 ms
78,720 KB
testcase_06 AC 65 ms
80,000 KB
testcase_07 AC 67 ms
79,744 KB
testcase_08 AC 70 ms
81,408 KB
testcase_09 AC 60 ms
78,848 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 48 ms
73,608 KB
testcase_21 AC 52 ms
73,088 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 49 ms
73,604 KB
testcase_27 AC 50 ms
73,624 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

sq = tuple(i ** 2 for i in range(1, N + 1))
xy, zw = ([0] * (2 * N ** 2 + 10 ** 6) for _ in range(2))
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
for i, a in enumerate(xy):
    ans += a * zw[i - D]
print(ans)
0