結果

問題 No.1238 選抜クラス
ユーザー O2MTO2MT
提出日時 2020-09-30 11:19:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,517 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-07-05 18:20:39
合計ジャッジ時間 28,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
11,136 KB
testcase_01 AC 73 ms
11,264 KB
testcase_02 AC 154 ms
12,288 KB
testcase_03 AC 47 ms
11,136 KB
testcase_04 AC 47 ms
10,880 KB
testcase_05 AC 47 ms
10,880 KB
testcase_06 AC 49 ms
10,880 KB
testcase_07 AC 118 ms
12,032 KB
testcase_08 AC 151 ms
12,288 KB
testcase_09 AC 217 ms
13,056 KB
testcase_10 AC 119 ms
11,904 KB
testcase_11 AC 204 ms
12,800 KB
testcase_12 AC 163 ms
12,544 KB
testcase_13 AC 159 ms
12,416 KB
testcase_14 AC 158 ms
12,288 KB
testcase_15 AC 214 ms
13,184 KB
testcase_16 AC 207 ms
12,800 KB
testcase_17 AC 1,339 ms
34,048 KB
testcase_18 AC 1,270 ms
31,232 KB
testcase_19 AC 1,302 ms
36,608 KB
testcase_20 AC 1,305 ms
33,792 KB
testcase_21 AC 1,277 ms
32,896 KB
testcase_22 AC 1,311 ms
26,752 KB
testcase_23 AC 1,415 ms
27,008 KB
testcase_24 AC 1,517 ms
27,008 KB
testcase_25 AC 1,318 ms
27,008 KB
testcase_26 AC 1,307 ms
34,048 KB
testcase_27 AC 1,408 ms
38,784 KB
testcase_28 AC 1,495 ms
32,896 KB
testcase_29 AC 1,291 ms
31,744 KB
testcase_30 AC 425 ms
15,872 KB
testcase_31 AC 752 ms
21,120 KB
testcase_32 AC 1,071 ms
28,160 KB
testcase_33 AC 112 ms
11,904 KB
testcase_34 AC 1,146 ms
28,288 KB
testcase_35 AC 541 ms
17,536 KB
testcase_36 AC 264 ms
13,696 KB
testcase_37 AC 471 ms
16,384 KB
testcase_38 AC 1,267 ms
31,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
for i in range(N):
  A[i] -= K
MOD = 10**9+7
dp = [[0 for _ in range(20001)] for _ in range(N+1)]
dp[0][10000] = 1
for i in range(N):
  a = A[i]
  for j in range(20001):
    dp[i+1][j] = dp[i][j]
    if (j-a) >= 0 and j-a <= 20000:
      dp[i + 1][j] += dp[i][j-a]
ans = 0
for i in range(10000, 20001):
  ans += dp[N][i]
  ans %= MOD
print(ans-1)
0