結果

問題 No.1238 選抜クラス
ユーザー O2MTO2MT
提出日時 2020-09-30 11:36:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-07-05 18:34:11
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,800 KB
testcase_01 AC 46 ms
61,056 KB
testcase_02 AC 49 ms
62,080 KB
testcase_03 AC 42 ms
60,032 KB
testcase_04 AC 41 ms
59,648 KB
testcase_05 AC 43 ms
59,776 KB
testcase_06 AC 41 ms
59,392 KB
testcase_07 AC 47 ms
61,440 KB
testcase_08 AC 48 ms
62,080 KB
testcase_09 AC 51 ms
63,616 KB
testcase_10 AC 47 ms
62,080 KB
testcase_11 AC 50 ms
62,848 KB
testcase_12 AC 49 ms
62,592 KB
testcase_13 AC 50 ms
62,848 KB
testcase_14 AC 48 ms
62,208 KB
testcase_15 AC 50 ms
62,976 KB
testcase_16 AC 50 ms
62,976 KB
testcase_17 AC 131 ms
99,584 KB
testcase_18 AC 127 ms
98,944 KB
testcase_19 AC 129 ms
97,792 KB
testcase_20 AC 129 ms
99,308 KB
testcase_21 AC 127 ms
97,920 KB
testcase_22 AC 108 ms
91,392 KB
testcase_23 AC 127 ms
104,704 KB
testcase_24 AC 108 ms
92,416 KB
testcase_25 AC 102 ms
91,392 KB
testcase_26 AC 127 ms
100,048 KB
testcase_27 AC 130 ms
99,456 KB
testcase_28 AC 128 ms
99,104 KB
testcase_29 AC 130 ms
99,176 KB
testcase_30 AC 58 ms
66,048 KB
testcase_31 AC 70 ms
70,656 KB
testcase_32 AC 91 ms
82,944 KB
testcase_33 AC 47 ms
61,696 KB
testcase_34 AC 102 ms
90,368 KB
testcase_35 AC 61 ms
67,840 KB
testcase_36 AC 53 ms
64,128 KB
testcase_37 AC 58 ms
66,304 KB
testcase_38 AC 128 ms
98,520 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 0 <= 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