結果

問題 No.800 四平方定理
ユーザー H3PO4H3PO4
提出日時 2021-02-07 10:41:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 279,040 KB
最終ジャッジ日時 2024-07-03 23:38:32
合計ジャッジ時間 10,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
77,696 KB
testcase_01 AC 67 ms
81,024 KB
testcase_02 AC 66 ms
79,616 KB
testcase_03 AC 57 ms
79,104 KB
testcase_04 AC 64 ms
79,232 KB
testcase_05 AC 65 ms
80,000 KB
testcase_06 AC 59 ms
81,024 KB
testcase_07 AC 65 ms
81,280 KB
testcase_08 AC 66 ms
82,816 KB
testcase_09 AC 57 ms
80,256 KB
testcase_10 AC 318 ms
184,192 KB
testcase_11 AC 345 ms
195,712 KB
testcase_12 AC 340 ms
193,792 KB
testcase_13 AC 289 ms
188,544 KB
testcase_14 AC 301 ms
195,556 KB
testcase_15 AC 347 ms
194,688 KB
testcase_16 AC 297 ms
196,736 KB
testcase_17 AC 348 ms
196,660 KB
testcase_18 AC 345 ms
196,328 KB
testcase_19 AC 370 ms
196,200 KB
testcase_20 AC 50 ms
73,600 KB
testcase_21 AC 54 ms
73,216 KB
testcase_22 AC 349 ms
196,700 KB
testcase_23 AC 603 ms
278,812 KB
testcase_24 AC 499 ms
279,040 KB
testcase_25 AC 580 ms
278,016 KB
testcase_26 AC 50 ms
73,088 KB
testcase_27 AC 49 ms
73,088 KB
testcase_28 AC 577 ms
277,888 KB
testcase_29 AC 595 ms
278,760 KB
testcase_30 AC 545 ms
277,728 KB
testcase_31 AC 465 ms
264,704 KB
testcase_32 AC 579 ms
278,656 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 + 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