結果

問題 No.1238 選抜クラス
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-09-25 23:36:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 809 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-06-28 08:18:18
合計ジャッジ時間 16,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
11,136 KB
testcase_01 AC 51 ms
11,392 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 37 ms
11,008 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 37 ms
11,136 KB
testcase_06 AC 37 ms
11,008 KB
testcase_07 AC 70 ms
11,904 KB
testcase_08 AC 94 ms
12,160 KB
testcase_09 AC 122 ms
12,928 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 114 ms
13,056 KB
testcase_12 AC 95 ms
12,544 KB
testcase_13 AC 94 ms
12,544 KB
testcase_14 AC 91 ms
12,288 KB
testcase_15 AC 125 ms
13,056 KB
testcase_16 AC 116 ms
12,800 KB
testcase_17 AC 759 ms
33,280 KB
testcase_18 AC 752 ms
30,208 KB
testcase_19 AC 786 ms
33,920 KB
testcase_20 AC 748 ms
33,024 KB
testcase_21 AC 742 ms
31,104 KB
testcase_22 AC 650 ms
26,880 KB
testcase_23 AC 672 ms
26,880 KB
testcase_24 AC 691 ms
26,880 KB
testcase_25 AC 690 ms
26,880 KB
testcase_26 AC 756 ms
33,920 KB
testcase_27 AC 809 ms
35,840 KB
testcase_28 AC 779 ms
31,360 KB
testcase_29 AC 737 ms
30,592 KB
testcase_30 AC 233 ms
15,872 KB
testcase_31 AC 424 ms
20,992 KB
testcase_32 AC 587 ms
27,008 KB
testcase_33 AC 70 ms
11,776 KB
testcase_34 AC 608 ms
27,264 KB
testcase_35 AC 299 ms
17,408 KB
testcase_36 AC 244 ms
13,824 KB
testcase_37 AC 253 ms
16,256 KB
testcase_38 AC 707 ms
29,952 KB
権限があれば一括ダウンロードができます

ソースコード

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)%mod)
0