結果

問題 No.800 四平方定理
ユーザー H3PO4H3PO4
提出日時 2021-02-07 10:38:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 263,404 KB
最終ジャッジ日時 2024-07-03 23:34:48
合計ジャッジ時間 10,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,836 KB
testcase_01 AC 48 ms
65,968 KB
testcase_02 AC 46 ms
63,692 KB
testcase_03 AC 45 ms
63,404 KB
testcase_04 AC 48 ms
63,648 KB
testcase_05 AC 48 ms
64,300 KB
testcase_06 AC 46 ms
65,704 KB
testcase_07 AC 61 ms
65,628 KB
testcase_08 WA -
testcase_09 AC 52 ms
65,012 KB
testcase_10 AC 337 ms
168,260 KB
testcase_11 AC 380 ms
179,700 KB
testcase_12 AC 365 ms
178,416 KB
testcase_13 AC 308 ms
172,552 KB
testcase_14 AC 336 ms
179,940 KB
testcase_15 AC 375 ms
179,264 KB
testcase_16 AC 348 ms
181,072 KB
testcase_17 AC 349 ms
181,112 KB
testcase_18 AC 371 ms
180,652 KB
testcase_19 AC 373 ms
180,804 KB
testcase_20 AC 38 ms
52,744 KB
testcase_21 AC 37 ms
53,392 KB
testcase_22 AC 377 ms
181,376 KB
testcase_23 AC 663 ms
263,404 KB
testcase_24 AC 577 ms
263,052 KB
testcase_25 AC 700 ms
262,360 KB
testcase_26 AC 36 ms
52,820 KB
testcase_27 RE -
testcase_28 AC 651 ms
262,272 KB
testcase_29 AC 630 ms
263,084 KB
testcase_30 AC 553 ms
262,400 KB
testcase_31 AC 541 ms
249,112 KB
testcase_32 AC 673 ms
263,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

sq = tuple(i ** 2 for i in range(1, N + 1))
xy, zw = [0] * (3 * N ** 2), [0] * (3 * N ** 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