結果

問題 No.1238 選抜クラス
ユーザー KudeKude
提出日時 2020-09-25 21:45:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-28 06:19:21
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,776 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 47 ms
60,800 KB
testcase_03 AC 42 ms
58,624 KB
testcase_04 AC 43 ms
58,752 KB
testcase_05 AC 46 ms
58,368 KB
testcase_06 AC 41 ms
58,368 KB
testcase_07 AC 46 ms
60,544 KB
testcase_08 AC 47 ms
61,056 KB
testcase_09 AC 49 ms
62,464 KB
testcase_10 AC 46 ms
61,056 KB
testcase_11 AC 49 ms
62,464 KB
testcase_12 AC 48 ms
61,568 KB
testcase_13 AC 48 ms
61,568 KB
testcase_14 AC 47 ms
60,928 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 50 ms
62,208 KB
testcase_17 AC 71 ms
76,416 KB
testcase_18 AC 72 ms
76,416 KB
testcase_19 AC 70 ms
75,904 KB
testcase_20 AC 70 ms
75,136 KB
testcase_21 AC 69 ms
74,880 KB
testcase_22 AC 68 ms
75,136 KB
testcase_23 AC 70 ms
76,032 KB
testcase_24 AC 73 ms
76,032 KB
testcase_25 AC 68 ms
75,008 KB
testcase_26 AC 72 ms
76,160 KB
testcase_27 AC 71 ms
75,776 KB
testcase_28 AC 72 ms
76,672 KB
testcase_29 AC 73 ms
76,288 KB
testcase_30 AC 59 ms
65,152 KB
testcase_31 AC 62 ms
69,376 KB
testcase_32 AC 67 ms
72,448 KB
testcase_33 AC 47 ms
60,416 KB
testcase_34 AC 70 ms
74,496 KB
testcase_35 AC 59 ms
66,688 KB
testcase_36 AC 53 ms
63,360 KB
testcase_37 AC 56 ms
65,408 KB
testcase_38 AC 72 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n, k = map(int, input().split())
a = [int(x) - k for x in input().split()]
B = 100 * 100
dp = [0] * (2 * B + 1)
dp[B] = 1
for x in a:
    ndp = dp.copy()
    for i in range(2 * B + 1):
        if 0 <= i + x <= 2 * B:
            ndp[i+x] += dp[i]
            ndp[i+x] %= MOD
    dp = ndp
ans = sum(dp[B:]) % MOD
print(ans-1)
0