結果

問題 No.1238 選抜クラス
ユーザー first_vilfirst_vil
提出日時 2020-09-26 10:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-28 20:40:00
合計ジャッジ時間 4,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,928 KB
testcase_01 AC 48 ms
61,184 KB
testcase_02 AC 52 ms
62,976 KB
testcase_03 AC 46 ms
60,672 KB
testcase_04 AC 45 ms
61,184 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 45 ms
60,160 KB
testcase_07 AC 51 ms
62,208 KB
testcase_08 AC 53 ms
62,848 KB
testcase_09 AC 62 ms
64,640 KB
testcase_10 AC 53 ms
62,592 KB
testcase_11 AC 57 ms
64,000 KB
testcase_12 AC 54 ms
63,232 KB
testcase_13 AC 55 ms
63,488 KB
testcase_14 AC 51 ms
62,208 KB
testcase_15 AC 56 ms
63,360 KB
testcase_16 AC 57 ms
63,616 KB
testcase_17 AC 119 ms
78,464 KB
testcase_18 AC 119 ms
79,232 KB
testcase_19 AC 118 ms
77,568 KB
testcase_20 AC 113 ms
77,056 KB
testcase_21 AC 121 ms
76,672 KB
testcase_22 AC 116 ms
76,416 KB
testcase_23 AC 119 ms
78,080 KB
testcase_24 AC 120 ms
78,464 KB
testcase_25 AC 115 ms
76,160 KB
testcase_26 AC 121 ms
78,464 KB
testcase_27 AC 120 ms
77,952 KB
testcase_28 AC 124 ms
79,744 KB
testcase_29 AC 126 ms
79,232 KB
testcase_30 AC 72 ms
67,456 KB
testcase_31 AC 91 ms
72,192 KB
testcase_32 AC 103 ms
74,624 KB
testcase_33 AC 49 ms
61,184 KB
testcase_34 AC 111 ms
77,184 KB
testcase_35 AC 78 ms
69,504 KB
testcase_36 AC 60 ms
64,896 KB
testcase_37 AC 69 ms
67,584 KB
testcase_38 AC 120 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  m=10**9+7
  n,k=map(int,input().split())
  a=list(map(int,input().split()))
  for i in range(n):
    a[i]-=k
  dp=[[0]*20001 for _ in range(n+1)]
  dp[0][0]=1
  for i in range(n):
    for j in range(-10000,10001):
      dp[i][j]%=m
      if -10000<=j+a[i] and j+a[i]<=10000:
        dp[i+1][j]+=dp[i][j]
        dp[i+1][j+a[i]]+=dp[i][j]
  print((sum(dp[n][:10001])-1+m)%m)
main()
0