結果

問題 No.1238 選抜クラス
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-03 10:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 86,252 KB
最終ジャッジ日時 2024-10-03 03:09:34
合計ジャッジ時間 4,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 57 ms
60,672 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 46 ms
53,376 KB
testcase_07 AC 48 ms
59,904 KB
testcase_08 AC 49 ms
60,800 KB
testcase_09 AC 50 ms
62,592 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 52 ms
63,488 KB
testcase_12 AC 50 ms
62,208 KB
testcase_13 AC 49 ms
61,312 KB
testcase_14 AC 48 ms
60,928 KB
testcase_15 AC 56 ms
65,280 KB
testcase_16 AC 50 ms
62,384 KB
testcase_17 AC 91 ms
85,760 KB
testcase_18 AC 90 ms
85,416 KB
testcase_19 AC 85 ms
84,992 KB
testcase_20 AC 85 ms
83,456 KB
testcase_21 AC 87 ms
83,056 KB
testcase_22 AC 89 ms
84,608 KB
testcase_23 AC 80 ms
84,700 KB
testcase_24 AC 78 ms
84,876 KB
testcase_25 AC 77 ms
84,864 KB
testcase_26 AC 86 ms
84,992 KB
testcase_27 AC 90 ms
85,632 KB
testcase_28 AC 92 ms
86,144 KB
testcase_29 AC 88 ms
86,252 KB
testcase_30 AC 57 ms
68,224 KB
testcase_31 AC 69 ms
75,640 KB
testcase_32 AC 73 ms
75,392 KB
testcase_33 AC 47 ms
60,792 KB
testcase_34 AC 86 ms
82,396 KB
testcase_35 AC 61 ms
71,552 KB
testcase_36 AC 50 ms
62,720 KB
testcase_37 AC 57 ms
68,224 KB
testcase_38 AC 89 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n,k,a):
  mod=10**9+7
  from collections import defaultdict
  # dp[i][j]:i人選んで合計点がjの場合数。
  aa=[x-k for x in a]
  dp=[0]*(200*n+1)
  dp[0]=1
  for i in range(n):
    ndp=dp[:]
    for j in reversed(range(-100*n,100*n+1)):
      if dp[j]==0:continue
      ndp[j+aa[i]]+=dp[j]
      ndp[j+aa[i]]%=mod
    dp=ndp
  ans=-1
  for i in range(100*n+1):
    ans+=dp[i]
    ans%=mod
  return ans
if __name__=='__main__':
  n,k=map(int,input().split())
  a=list(map(int,input().split()))

  ret0=main0(n,k,a)
  print(ret0)
0