結果

問題 No.1238 選抜クラス
ユーザー marroncastlemarroncastle
提出日時 2020-09-25 22:16:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 82,960 KB
最終ジャッジ日時 2024-06-28 06:39:04
合計ジャッジ時間 4,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,912 KB
testcase_01 AC 53 ms
63,384 KB
testcase_02 AC 56 ms
64,892 KB
testcase_03 AC 47 ms
60,820 KB
testcase_04 AC 46 ms
60,300 KB
testcase_05 AC 47 ms
61,960 KB
testcase_06 AC 47 ms
60,432 KB
testcase_07 AC 55 ms
63,972 KB
testcase_08 AC 57 ms
64,724 KB
testcase_09 AC 63 ms
67,700 KB
testcase_10 AC 59 ms
66,000 KB
testcase_11 AC 60 ms
65,696 KB
testcase_12 AC 58 ms
65,616 KB
testcase_13 AC 59 ms
66,564 KB
testcase_14 AC 58 ms
64,252 KB
testcase_15 AC 60 ms
66,000 KB
testcase_16 AC 59 ms
66,128 KB
testcase_17 AC 98 ms
81,756 KB
testcase_18 AC 100 ms
82,960 KB
testcase_19 AC 97 ms
80,836 KB
testcase_20 AC 96 ms
80,064 KB
testcase_21 AC 95 ms
79,288 KB
testcase_22 AC 92 ms
78,704 KB
testcase_23 AC 97 ms
80,616 KB
testcase_24 AC 97 ms
81,628 KB
testcase_25 AC 92 ms
78,872 KB
testcase_26 AC 98 ms
81,652 KB
testcase_27 AC 97 ms
81,168 KB
testcase_28 AC 99 ms
82,848 KB
testcase_29 AC 99 ms
82,564 KB
testcase_30 AC 68 ms
69,036 KB
testcase_31 AC 81 ms
75,000 KB
testcase_32 AC 87 ms
78,204 KB
testcase_33 AC 54 ms
63,844 KB
testcase_34 AC 95 ms
79,948 KB
testcase_35 AC 75 ms
72,712 KB
testcase_36 AC 63 ms
68,684 KB
testcase_37 AC 71 ms
70,520 KB
testcase_38 AC 99 ms
82,252 KB
権限があれば一括ダウンロードができます

ソースコード

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%mod)
0