結果

問題 No.1238 選抜クラス
ユーザー toyuzukotoyuzuko
提出日時 2020-09-28 23:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-07-02 20:41:18
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,512 KB
testcase_01 AC 52 ms
64,640 KB
testcase_02 AC 58 ms
65,792 KB
testcase_03 AC 46 ms
61,440 KB
testcase_04 AC 46 ms
61,568 KB
testcase_05 AC 46 ms
62,208 KB
testcase_06 AC 45 ms
61,952 KB
testcase_07 AC 52 ms
65,152 KB
testcase_08 AC 54 ms
66,176 KB
testcase_09 AC 64 ms
68,736 KB
testcase_10 AC 56 ms
66,560 KB
testcase_11 AC 58 ms
67,584 KB
testcase_12 AC 58 ms
66,944 KB
testcase_13 AC 57 ms
67,072 KB
testcase_14 AC 53 ms
65,968 KB
testcase_15 AC 57 ms
66,944 KB
testcase_16 AC 57 ms
67,456 KB
testcase_17 AC 101 ms
82,816 KB
testcase_18 AC 104 ms
85,120 KB
testcase_19 AC 105 ms
82,688 KB
testcase_20 AC 100 ms
81,664 KB
testcase_21 AC 101 ms
81,792 KB
testcase_22 AC 101 ms
80,640 KB
testcase_23 AC 102 ms
83,328 KB
testcase_24 AC 102 ms
82,432 KB
testcase_25 AC 98 ms
80,128 KB
testcase_26 AC 100 ms
82,560 KB
testcase_27 AC 102 ms
83,328 KB
testcase_28 AC 104 ms
84,992 KB
testcase_29 AC 107 ms
83,712 KB
testcase_30 AC 69 ms
70,784 KB
testcase_31 AC 89 ms
77,440 KB
testcase_32 AC 93 ms
79,232 KB
testcase_33 AC 52 ms
65,408 KB
testcase_34 AC 100 ms
83,072 KB
testcase_35 AC 78 ms
74,624 KB
testcase_36 AC 63 ms
69,376 KB
testcase_37 AC 69 ms
71,552 KB
testcase_38 AC 103 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000000007

N, K = map(int, input().split())
A = list(map(int, input().split()))

B = [A[i] - K for i in range(N)]

dp = [[0 for j in range(20001)] for i in range(N + 1)]
dp[0][0] = 1

for i in range(1, N + 1):
    for j in range(-10000, 10001):
        if -10000 <= j - B[i - 1] <= 10000:
            dp[i][j] += dp[i - 1][j - B[i - 1]] + dp[i - 1][j]
            dp[i][j] %= MOD

res = 0

for j in range(0, 10001):
    res += dp[N][j]
    res %= MOD

print(res - 1)
0