結果

問題 No.1238 選抜クラス
ユーザー marroncastlemarroncastle
提出日時 2020-09-25 21:57:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,580 KB
実行使用メモリ 81,916 KB
最終ジャッジ日時 2024-06-28 06:32:56
合計ジャッジ時間 4,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,280 KB
testcase_01 AC 53 ms
62,988 KB
testcase_02 AC 56 ms
65,988 KB
testcase_03 AC 51 ms
62,160 KB
testcase_04 AC 47 ms
60,372 KB
testcase_05 AC 51 ms
62,500 KB
testcase_06 AC 47 ms
60,216 KB
testcase_07 AC 55 ms
63,684 KB
testcase_08 AC 57 ms
65,780 KB
testcase_09 AC 63 ms
67,504 KB
testcase_10 AC 57 ms
66,168 KB
testcase_11 AC 62 ms
66,240 KB
testcase_12 AC 60 ms
65,512 KB
testcase_13 AC 59 ms
66,424 KB
testcase_14 AC 57 ms
64,848 KB
testcase_15 AC 58 ms
65,056 KB
testcase_16 AC 61 ms
66,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 96 ms
79,900 KB
testcase_20 WA -
testcase_21 AC 93 ms
79,116 KB
testcase_22 AC 93 ms
78,556 KB
testcase_23 AC 96 ms
80,988 KB
testcase_24 WA -
testcase_25 AC 92 ms
78,800 KB
testcase_26 WA -
testcase_27 AC 99 ms
80,496 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 69 ms
69,240 KB
testcase_31 WA -
testcase_32 AC 87 ms
76,472 KB
testcase_33 AC 54 ms
64,916 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 65 ms
67,584 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(lambda x:int(x)-K, input().split()))
dp = [0]*20001
dp[0] = 1
mod = 10**9+7
for i in range(N):
  new_dp = dp[:]
  for j in range(-10000,10001):
    if -10000<=j+A[i]<=10000:
      new_dp[j+A[i]] += dp[j]
      new_dp[j+A[i]] %= mod
  dp = new_dp
ans = -1
for i in range(10001):
  ans += dp[i]
print(ans)
0