結果

問題 No.1238 選抜クラス
ユーザー marroncastlemarroncastle
提出日時 2020-09-25 21:54:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-06-28 06:30:15
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,544 KB
testcase_01 AC 47 ms
60,672 KB
testcase_02 AC 50 ms
62,336 KB
testcase_03 AC 44 ms
58,752 KB
testcase_04 AC 47 ms
59,008 KB
testcase_05 AC 43 ms
59,008 KB
testcase_06 AC 44 ms
58,752 KB
testcase_07 AC 48 ms
61,184 KB
testcase_08 AC 52 ms
61,952 KB
testcase_09 AC 51 ms
62,976 KB
testcase_10 AC 48 ms
61,184 KB
testcase_11 AC 52 ms
63,616 KB
testcase_12 AC 52 ms
63,232 KB
testcase_13 AC 50 ms
62,080 KB
testcase_14 AC 49 ms
62,080 KB
testcase_15 AC 57 ms
64,896 KB
testcase_16 AC 52 ms
62,976 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 75 ms
76,416 KB
testcase_20 WA -
testcase_21 AC 79 ms
78,208 KB
testcase_22 AC 70 ms
76,032 KB
testcase_23 AC 72 ms
76,928 KB
testcase_24 WA -
testcase_25 AC 70 ms
76,160 KB
testcase_26 WA -
testcase_27 AC 78 ms
77,312 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 60 ms
68,352 KB
testcase_31 WA -
testcase_32 AC 69 ms
73,984 KB
testcase_33 AC 49 ms
60,928 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 52 ms
64,000 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,10000):
    if dp[j]>0:
      new_dp[j+A[i]] += dp[j]
      new_dp[j+A[i]] %= mod
  dp = new_dp
ans = -1
for i in range(10000):
  ans += dp[i]
print(ans)
0