結果

問題 No.1238 選抜クラス
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-07 17:02:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,507 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,452 KB
最終ジャッジ日時 2024-07-22 14:35:22
合計ジャッジ時間 41,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 555 ms
43,812 KB
testcase_01 AC 557 ms
43,816 KB
testcase_02 AC 622 ms
44,452 KB
testcase_03 AC 533 ms
44,068 KB
testcase_04 AC 534 ms
43,680 KB
testcase_05 AC 543 ms
44,060 KB
testcase_06 AC 536 ms
44,320 KB
testcase_07 AC 632 ms
44,072 KB
testcase_08 AC 645 ms
44,196 KB
testcase_09 AC 682 ms
43,672 KB
testcase_10 AC 592 ms
43,680 KB
testcase_11 AC 656 ms
43,812 KB
testcase_12 AC 621 ms
43,812 KB
testcase_13 AC 640 ms
44,064 KB
testcase_14 AC 609 ms
43,932 KB
testcase_15 AC 675 ms
44,196 KB
testcase_16 AC 654 ms
43,808 KB
testcase_17 AC 1,488 ms
44,444 KB
testcase_18 AC 1,501 ms
43,680 KB
testcase_19 AC 1,442 ms
43,936 KB
testcase_20 AC 1,411 ms
44,452 KB
testcase_21 AC 1,390 ms
43,936 KB
testcase_22 AC 1,472 ms
44,064 KB
testcase_23 AC 1,480 ms
44,328 KB
testcase_24 AC 1,495 ms
44,328 KB
testcase_25 AC 1,473 ms
43,812 KB
testcase_26 AC 1,480 ms
43,932 KB
testcase_27 AC 1,502 ms
44,324 KB
testcase_28 AC 1,471 ms
44,324 KB
testcase_29 AC 1,507 ms
44,068 KB
testcase_30 AC 815 ms
44,324 KB
testcase_31 AC 1,037 ms
44,064 KB
testcase_32 AC 1,291 ms
44,320 KB
testcase_33 AC 582 ms
44,068 KB
testcase_34 AC 1,339 ms
43,944 KB
testcase_35 AC 891 ms
44,064 KB
testcase_36 AC 725 ms
43,936 KB
testcase_37 AC 855 ms
43,936 KB
testcase_38 AC 1,495 ms
44,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n, k = map(int, input().split())
a = list(map(int, input().split()))
a = list(map(lambda x: x - k, a))
mod = 10 ** 9 + 7
dp = [0] * 20001
dp[10000] = 1
for i in a:
    new = dp[:]
    for j in range(20001):
        if 0 <= i + j <= 20000:
            new[i + j] += dp[j]
            new[i + j] %= mod
    dp = new
print((sum(dp[10000:]) - 1) % mod)
0