結果

問題 No.1238 選抜クラス
ユーザー H3PO4H3PO4
提出日時 2020-09-25 21:55:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 298 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,572 KB
最終ジャッジ日時 2024-06-28 06:31:48
合計ジャッジ時間 23,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
44,056 KB
testcase_01 AC 509 ms
43,812 KB
testcase_02 AC 517 ms
43,808 KB
testcase_03 RE -
testcase_04 AC 513 ms
43,808 KB
testcase_05 AC 515 ms
43,932 KB
testcase_06 RE -
testcase_07 AC 510 ms
43,928 KB
testcase_08 AC 523 ms
44,312 KB
testcase_09 AC 521 ms
44,060 KB
testcase_10 AC 514 ms
44,052 KB
testcase_11 AC 513 ms
44,192 KB
testcase_12 AC 509 ms
44,188 KB
testcase_13 AC 508 ms
44,448 KB
testcase_14 AC 508 ms
43,800 KB
testcase_15 AC 511 ms
44,312 KB
testcase_16 AC 507 ms
44,184 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 530 ms
43,848 KB
testcase_24 WA -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 515 ms
43,924 KB
testcase_31 WA -
testcase_32 AC 530 ms
43,808 KB
testcase_33 AC 511 ms
44,188 KB
testcase_34 RE -
testcase_35 WA -
testcase_36 AC 525 ms
44,060 KB
testcase_37 WA -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, K = map(int, input().split())
A = [int(x) - K for x in input().split()]

MOD = 10 ** 9 + 7
L = 10000
dp = np.zeros(2 * L + 1, dtype=int)
dp[L] = 1

for a in A:
    if a >= 0:
        dp[a:] += dp[:-a]
    else:
        dp[:a] += dp[-a:]
    dp %= MOD
print(dp[L:].sum() - 1)
0