結果

問題 No.1238 選抜クラス
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-09-25 23:36:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-06-28 08:17:28
合計ジャッジ時間 15,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
10,880 KB
testcase_01 AC 54 ms
11,136 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 38 ms
10,880 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 36 ms
11,008 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 70 ms
11,776 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 125 ms
13,056 KB
testcase_10 AC 75 ms
11,776 KB
testcase_11 AC 111 ms
12,800 KB
testcase_12 AC 95 ms
12,288 KB
testcase_13 AC 94 ms
12,416 KB
testcase_14 AC 88 ms
12,160 KB
testcase_15 AC 116 ms
12,928 KB
testcase_16 AC 119 ms
12,800 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 789 ms
33,792 KB
testcase_20 WA -
testcase_21 AC 696 ms
31,104 KB
testcase_22 WA -
testcase_23 AC 670 ms
27,008 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 819 ms
35,712 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 236 ms
15,616 KB
testcase_31 WA -
testcase_32 AC 673 ms
27,008 KB
testcase_33 AC 67 ms
11,648 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 142 ms
13,696 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))
dp = [[0]*(20005) for i in range(n+1)]
dp[0][10000] = 1
mod = 10**9+7
for i in range(n):
    x = a[i]-k
    for j in range(20001):
        if dp[i][j] > 0:
            dp[i+1][j+x] += dp[i][j]
            dp[i+1][j+x] %= mod
        dp[i+1][j] += dp[i][j]

print(sum(dp[-1][10000:])-1)
0