結果

問題 No.1238 選抜クラス
ユーザー naniwazunaniwazu
提出日時 2020-09-25 22:16:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 76,796 KB
最終ジャッジ日時 2024-06-28 06:38:55
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,184 KB
testcase_01 AC 45 ms
60,896 KB
testcase_02 AC 47 ms
59,608 KB
testcase_03 AC 43 ms
58,688 KB
testcase_04 AC 43 ms
58,016 KB
testcase_05 AC 42 ms
59,208 KB
testcase_06 AC 43 ms
58,284 KB
testcase_07 AC 45 ms
59,776 KB
testcase_08 AC 47 ms
59,444 KB
testcase_09 AC 47 ms
60,344 KB
testcase_10 AC 44 ms
59,584 KB
testcase_11 AC 45 ms
60,636 KB
testcase_12 AC 46 ms
59,844 KB
testcase_13 AC 45 ms
59,192 KB
testcase_14 AC 46 ms
60,932 KB
testcase_15 AC 46 ms
60,384 KB
testcase_16 AC 46 ms
60,876 KB
testcase_17 AC 79 ms
76,088 KB
testcase_18 AC 77 ms
76,500 KB
testcase_19 AC 73 ms
74,628 KB
testcase_20 AC 75 ms
74,284 KB
testcase_21 AC 72 ms
73,840 KB
testcase_22 AC 66 ms
72,764 KB
testcase_23 AC 68 ms
73,164 KB
testcase_24 AC 69 ms
72,680 KB
testcase_25 AC 65 ms
72,512 KB
testcase_26 AC 75 ms
76,456 KB
testcase_27 AC 80 ms
76,796 KB
testcase_28 AC 78 ms
76,252 KB
testcase_29 AC 80 ms
76,580 KB
testcase_30 AC 47 ms
59,272 KB
testcase_31 AC 50 ms
60,060 KB
testcase_32 AC 59 ms
64,884 KB
testcase_33 AC 45 ms
59,848 KB
testcase_34 AC 65 ms
70,628 KB
testcase_35 AC 47 ms
60,788 KB
testcase_36 AC 45 ms
60,220 KB
testcase_37 AC 47 ms
59,956 KB
testcase_38 AC 72 ms
73,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
N,K = map(int,input().split())
A = [x-K for x in map(int,input().split())]
dp = [0]*21000
dp[10500] = 1
for a in A:
    if a >= 0:
        for i in range(100,20900)[::-1]:
            dp[i+a] += dp[i]
    else:
        for i in range(100,20900):
            dp[i+a] += dp[i]
print((sum(dp[10500:])-1) % mod)
0