結果

問題 No.800 四平方定理
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-27 23:09:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 206,904 KB
最終ジャッジ日時 2024-07-06 18:04:59
合計ジャッジ時間 20,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
45,116 KB
testcase_01 AC 452 ms
45,620 KB
testcase_02 AC 451 ms
44,728 KB
testcase_03 AC 473 ms
45,492 KB
testcase_04 AC 461 ms
44,848 KB
testcase_05 AC 461 ms
45,236 KB
testcase_06 AC 467 ms
46,132 KB
testcase_07 AC 470 ms
46,632 KB
testcase_08 AC 465 ms
47,552 KB
testcase_09 AC 456 ms
45,884 KB
testcase_10 AC 537 ms
124,852 KB
testcase_11 AC 549 ms
132,204 KB
testcase_12 AC 563 ms
133,136 KB
testcase_13 AC 527 ms
124,984 KB
testcase_14 AC 541 ms
130,664 KB
testcase_15 AC 544 ms
133,932 KB
testcase_16 AC 536 ms
131,648 KB
testcase_17 AC 532 ms
131,528 KB
testcase_18 AC 553 ms
138,808 KB
testcase_19 AC 550 ms
139,024 KB
testcase_20 AC 449 ms
44,204 KB
testcase_21 AC 453 ms
44,336 KB
testcase_22 AC 552 ms
138,952 KB
testcase_23 AC 657 ms
206,904 KB
testcase_24 AC 611 ms
199,204 KB
testcase_25 AC 632 ms
206,768 KB
testcase_26 AC 454 ms
44,600 KB
testcase_27 AC 448 ms
44,464 KB
testcase_28 AC 621 ms
198,192 KB
testcase_29 AC 625 ms
202,916 KB
testcase_30 AC 626 ms
198,432 KB
testcase_31 AC 610 ms
187,916 KB
testcase_32 AC 631 ms
200,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, D = map(int, input().split())
X = np.arange(1, N+1) ** 2

dpL = np.add.outer(X, X).flatten()
dpR = np.subtract.outer(X, X).flatten() + D

dpL = np.bincount(dpL)
dpR = np.bincount(dpR[dpR >= 0])
sz = min(len(dpL), len(dpR))

ans = (dpL[:sz]*dpR[:sz]).sum()
print(ans)
0