結果

問題 No.1238 選抜クラス
ユーザー wolgnikwolgnik
提出日時 2020-09-25 21:49:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-06-28 06:23:29
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 43 ms
58,624 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 43 ms
58,752 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 42 ms
57,856 KB
testcase_11 AC 48 ms
60,544 KB
testcase_12 AC 44 ms
58,880 KB
testcase_13 AC 44 ms
58,752 KB
testcase_14 AC 43 ms
58,368 KB
testcase_15 AC 47 ms
59,904 KB
testcase_16 AC 47 ms
60,160 KB
testcase_17 AC 54 ms
61,548 KB
testcase_18 AC 54 ms
62,208 KB
testcase_19 AC 54 ms
60,928 KB
testcase_20 AC 52 ms
60,928 KB
testcase_21 AC 51 ms
60,800 KB
testcase_22 AC 44 ms
59,008 KB
testcase_23 AC 48 ms
60,032 KB
testcase_24 AC 50 ms
59,776 KB
testcase_25 AC 43 ms
58,880 KB
testcase_26 AC 52 ms
60,544 KB
testcase_27 AC 53 ms
60,672 KB
testcase_28 AC 55 ms
61,952 KB
testcase_29 AC 53 ms
61,568 KB
testcase_30 AC 52 ms
61,056 KB
testcase_31 AC 51 ms
62,048 KB
testcase_32 AC 52 ms
60,928 KB
testcase_33 AC 41 ms
57,972 KB
testcase_34 AC 53 ms
61,824 KB
testcase_35 AC 50 ms
61,312 KB
testcase_36 AC 47 ms
59,904 KB
testcase_37 AC 48 ms
61,056 KB
testcase_38 AC 53 ms
62,208 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