結果

問題 No.1238 選抜クラス
ユーザー kohei2019kohei2019
提出日時 2022-07-18 21:05:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 86,932 KB
最終ジャッジ日時 2024-06-30 20:54:49
合計ジャッジ時間 4,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,420 KB
testcase_01 AC 49 ms
62,260 KB
testcase_02 AC 51 ms
64,168 KB
testcase_03 AC 43 ms
59,304 KB
testcase_04 AC 45 ms
59,636 KB
testcase_05 AC 44 ms
59,820 KB
testcase_06 AC 44 ms
59,844 KB
testcase_07 AC 49 ms
62,212 KB
testcase_08 AC 52 ms
62,564 KB
testcase_09 AC 58 ms
65,764 KB
testcase_10 AC 50 ms
63,532 KB
testcase_11 AC 56 ms
64,504 KB
testcase_12 AC 54 ms
63,380 KB
testcase_13 AC 53 ms
63,436 KB
testcase_14 AC 51 ms
64,168 KB
testcase_15 AC 55 ms
64,392 KB
testcase_16 AC 55 ms
64,356 KB
testcase_17 AC 94 ms
86,664 KB
testcase_18 AC 95 ms
86,064 KB
testcase_19 AC 93 ms
84,996 KB
testcase_20 AC 92 ms
85,132 KB
testcase_21 AC 89 ms
83,888 KB
testcase_22 AC 87 ms
84,232 KB
testcase_23 AC 91 ms
85,432 KB
testcase_24 AC 93 ms
85,448 KB
testcase_25 AC 87 ms
83,912 KB
testcase_26 AC 93 ms
85,940 KB
testcase_27 AC 94 ms
86,932 KB
testcase_28 AC 94 ms
86,184 KB
testcase_29 AC 95 ms
86,232 KB
testcase_30 AC 63 ms
70,560 KB
testcase_31 AC 74 ms
74,748 KB
testcase_32 AC 84 ms
80,212 KB
testcase_33 AC 50 ms
63,100 KB
testcase_34 AC 89 ms
82,896 KB
testcase_35 AC 69 ms
71,204 KB
testcase_36 AC 59 ms
66,924 KB
testcase_37 AC 65 ms
70,372 KB
testcase_38 AC 95 ms
84,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
dp = [0]*(30000+1)
offset = 15000
dp[offset] = 1
mod = 10**9+7
for i in range(N):
    a = lsA[i]-K
    dp2 = [0]*(30000+1)
    for j in range(30000+1):
        if 0<= j+a <=30000:
            dp2[j+a] += dp[j]
            dp2[j+a] %= mod
        dp2[j] += dp[j]
        dp2[j] %= mod
    dp = dp2
print((sum(dp[offset:])-1)%mod)
0