結果

問題 No.1238 選抜クラス
ユーザー 👑 rin204rin204
提出日時 2022-07-04 17:11:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 81,656 KB
最終ジャッジ日時 2024-05-08 06:40:21
合計ジャッジ時間 4,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,664 KB
testcase_01 AC 55 ms
63,356 KB
testcase_02 AC 55 ms
64,752 KB
testcase_03 AC 46 ms
62,176 KB
testcase_04 AC 45 ms
62,728 KB
testcase_05 AC 47 ms
61,208 KB
testcase_06 AC 45 ms
61,364 KB
testcase_07 AC 53 ms
64,620 KB
testcase_08 AC 54 ms
64,620 KB
testcase_09 AC 58 ms
66,696 KB
testcase_10 AC 55 ms
65,532 KB
testcase_11 AC 58 ms
65,268 KB
testcase_12 AC 54 ms
65,760 KB
testcase_13 AC 55 ms
65,536 KB
testcase_14 AC 53 ms
66,088 KB
testcase_15 AC 54 ms
65,984 KB
testcase_16 AC 56 ms
66,904 KB
testcase_17 AC 85 ms
81,212 KB
testcase_18 AC 84 ms
81,300 KB
testcase_19 AC 82 ms
80,812 KB
testcase_20 AC 85 ms
80,444 KB
testcase_21 AC 84 ms
79,568 KB
testcase_22 AC 84 ms
79,848 KB
testcase_23 AC 84 ms
79,876 KB
testcase_24 AC 86 ms
79,620 KB
testcase_25 AC 86 ms
80,444 KB
testcase_26 AC 85 ms
80,144 KB
testcase_27 AC 86 ms
80,356 KB
testcase_28 AC 86 ms
81,656 KB
testcase_29 AC 86 ms
80,584 KB
testcase_30 AC 64 ms
69,732 KB
testcase_31 AC 73 ms
74,244 KB
testcase_32 AC 78 ms
76,612 KB
testcase_33 AC 53 ms
64,512 KB
testcase_34 AC 83 ms
78,236 KB
testcase_35 AC 67 ms
71,396 KB
testcase_36 AC 59 ms
67,060 KB
testcase_37 AC 64 ms
69,752 KB
testcase_38 AC 86 ms
79,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, k = map(int, input().split())
A = list(map(int, input().split()))
A = [a - k for a in A]
dp = [0] * 20200
dp[0] = 1
for a in A:
    ndp = [0] * 20200
    for i in range(-10000, 10001):
        ndp[i] += dp[i]
        ndp[i] %= MOD
        ndp[i + a] += dp[i]
        ndp[i + a] %= MOD
    dp = ndp
ans = -1
for i in range(10001):
    ans += dp[i]
    ans %= MOD
print(ans)
0