結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
44,120 KB
testcase_01 AC 513 ms
44,128 KB
testcase_02 AC 525 ms
44,124 KB
testcase_03 RE -
testcase_04 AC 513 ms
43,880 KB
testcase_05 AC 511 ms
43,864 KB
testcase_06 RE -
testcase_07 AC 507 ms
44,120 KB
testcase_08 AC 512 ms
43,868 KB
testcase_09 AC 516 ms
44,252 KB
testcase_10 AC 509 ms
43,740 KB
testcase_11 AC 518 ms
44,376 KB
testcase_12 AC 514 ms
44,124 KB
testcase_13 AC 521 ms
43,868 KB
testcase_14 AC 516 ms
43,872 KB
testcase_15 AC 514 ms
44,124 KB
testcase_16 AC 505 ms
43,868 KB
testcase_17 AC 537 ms
44,248 KB
testcase_18 AC 544 ms
44,000 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 532 ms
43,992 KB
testcase_24 AC 529 ms
43,864 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 533 ms
43,860 KB
testcase_31 AC 530 ms
44,384 KB
testcase_32 AC 543 ms
44,248 KB
testcase_33 AC 524 ms
43,860 KB
testcase_34 RE -
testcase_35 AC 530 ms
44,248 KB
testcase_36 AC 518 ms
43,864 KB
testcase_37 AC 520 ms
43,864 KB
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) % MOD)
0