結果

問題 No.1238 選抜クラス
ユーザー wolgnikwolgnik
提出日時 2020-09-25 21:48:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 63,164 KB
最終ジャッジ日時 2024-06-28 06:21:21
合計ジャッジ時間 3,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 44 ms
58,368 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 44 ms
57,856 KB
testcase_09 AC 48 ms
60,800 KB
testcase_10 AC 42 ms
57,728 KB
testcase_11 AC 49 ms
60,544 KB
testcase_12 AC 44 ms
58,368 KB
testcase_13 AC 44 ms
58,624 KB
testcase_14 AC 44 ms
58,112 KB
testcase_15 AC 48 ms
59,776 KB
testcase_16 AC 49 ms
59,904 KB
testcase_17 AC 54 ms
61,696 KB
testcase_18 AC 56 ms
61,952 KB
testcase_19 AC 54 ms
60,928 KB
testcase_20 WA -
testcase_21 AC 52 ms
60,416 KB
testcase_22 AC 45 ms
59,008 KB
testcase_23 AC 51 ms
60,288 KB
testcase_24 AC 50 ms
59,776 KB
testcase_25 AC 45 ms
58,496 KB
testcase_26 WA -
testcase_27 AC 53 ms
60,416 KB
testcase_28 AC 56 ms
61,824 KB
testcase_29 WA -
testcase_30 AC 51 ms
61,056 KB
testcase_31 AC 52 ms
61,824 KB
testcase_32 AC 52 ms
60,800 KB
testcase_33 AC 42 ms
57,344 KB
testcase_34 WA -
testcase_35 AC 51 ms
61,184 KB
testcase_36 AC 48 ms
59,776 KB
testcase_37 AC 48 ms
60,544 KB
testcase_38 AC 55 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7
a.sort()
for i in range(N): a[i] -= K
mn = []
zr = 0
pl = []
for x in a:
  if x < 0: mn.append(-x)
  elif x == 0: zr += 1
  else: pl.append(x)

ln = N * 100
dpmn = [0] * (ln + 1)
dpmn[0] = 1
dppl = [0] * (ln + 1)
dppl[0] = 1
for x in mn:
  for i in range(ln, -1, -1):
    if dpmn[i]:
      dpmn[i + x] += dpmn[i]
      dpmn[i + x] %= mod
for x in pl:
  for i in range(ln, -1, -1):
    if dppl[i]:
      dppl[i + x] += dppl[i]
      dppl[i + x] %= mod
for i in range(ln, 0, -1):
  dppl[i - 1] += dppl[i]
  dppl[i - 1] %= mod
res = 0
for i in range(ln + 1):
  res += dppl[i] * dpmn[i]
  res %= mod
print(res * pow(2, zr, mod) - 1 % mod)
0