結果

問題 No.1238 選抜クラス
ユーザー first_vilfirst_vil
提出日時 2020-09-26 10:27:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-28 20:17:08
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,288 KB
testcase_01 AC 52 ms
60,800 KB
testcase_02 AC 55 ms
62,592 KB
testcase_03 AC 47 ms
60,416 KB
testcase_04 AC 48 ms
60,928 KB
testcase_05 AC 47 ms
60,544 KB
testcase_06 AC 48 ms
60,544 KB
testcase_07 AC 52 ms
62,208 KB
testcase_08 AC 54 ms
62,208 KB
testcase_09 AC 60 ms
64,640 KB
testcase_10 AC 56 ms
62,208 KB
testcase_11 AC 59 ms
63,360 KB
testcase_12 AC 57 ms
63,232 KB
testcase_13 AC 57 ms
62,976 KB
testcase_14 AC 55 ms
62,464 KB
testcase_15 AC 58 ms
63,232 KB
testcase_16 AC 59 ms
63,360 KB
testcase_17 AC 125 ms
78,336 KB
testcase_18 AC 126 ms
79,744 KB
testcase_19 AC 122 ms
77,952 KB
testcase_20 AC 122 ms
77,056 KB
testcase_21 AC 118 ms
76,672 KB
testcase_22 AC 121 ms
76,416 KB
testcase_23 AC 121 ms
78,080 KB
testcase_24 WA -
testcase_25 AC 122 ms
76,544 KB
testcase_26 AC 126 ms
77,952 KB
testcase_27 AC 124 ms
77,952 KB
testcase_28 AC 128 ms
79,360 KB
testcase_29 AC 126 ms
79,232 KB
testcase_30 AC 73 ms
67,456 KB
testcase_31 AC 93 ms
71,680 KB
testcase_32 AC 107 ms
74,752 KB
testcase_33 AC 52 ms
61,440 KB
testcase_34 AC 118 ms
77,568 KB
testcase_35 AC 82 ms
69,888 KB
testcase_36 AC 65 ms
65,152 KB
testcase_37 AC 75 ms
67,968 KB
testcase_38 AC 123 ms
78,336 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][:10000])-1+m)%m)
main()
0