結果

問題 No.1238 選抜クラス
ユーザー H3PO4H3PO4
提出日時 2020-09-25 22:18:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,532 KB
最終ジャッジ日時 2024-06-28 06:41:34
合計ジャッジ時間 24,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
43,940 KB
testcase_01 AC 522 ms
43,812 KB
testcase_02 AC 538 ms
43,812 KB
testcase_03 AC 536 ms
43,932 KB
testcase_04 AC 534 ms
43,940 KB
testcase_05 AC 532 ms
44,076 KB
testcase_06 AC 524 ms
44,072 KB
testcase_07 AC 532 ms
44,068 KB
testcase_08 AC 523 ms
44,064 KB
testcase_09 AC 532 ms
44,320 KB
testcase_10 AC 528 ms
43,812 KB
testcase_11 AC 533 ms
44,456 KB
testcase_12 AC 530 ms
44,060 KB
testcase_13 AC 532 ms
43,936 KB
testcase_14 AC 529 ms
43,808 KB
testcase_15 AC 526 ms
44,064 KB
testcase_16 AC 539 ms
44,456 KB
testcase_17 AC 553 ms
44,200 KB
testcase_18 AC 558 ms
44,200 KB
testcase_19 AC 562 ms
44,196 KB
testcase_20 AC 556 ms
43,812 KB
testcase_21 AC 555 ms
43,940 KB
testcase_22 AC 556 ms
43,804 KB
testcase_23 AC 555 ms
44,060 KB
testcase_24 AC 552 ms
44,532 KB
testcase_25 AC 555 ms
44,064 KB
testcase_26 AC 591 ms
44,448 KB
testcase_27 AC 583 ms
43,816 KB
testcase_28 AC 582 ms
43,812 KB
testcase_29 AC 550 ms
44,332 KB
testcase_30 AC 533 ms
44,200 KB
testcase_31 AC 547 ms
43,812 KB
testcase_32 AC 555 ms
43,936 KB
testcase_33 AC 524 ms
44,064 KB
testcase_34 AC 579 ms
43,992 KB
testcase_35 AC 547 ms
43,916 KB
testcase_36 AC 527 ms
44,192 KB
testcase_37 AC 539 ms
44,328 KB
testcase_38 AC 552 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

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[:2 * L + 1 - a]
    else:
        dp[:a] += dp[-a:]
    dp %= MOD
print((sum(dp[L:]) - 1) % MOD)
0