結果

問題 No.1238 選抜クラス
ユーザー tonyu0tonyu0
提出日時 2020-09-26 11:13:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 1,204 ms
コンパイル使用メモリ 123,164 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 21:16:30
合計ジャッジ時間 9,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,248 KB
testcase_01 AC 15 ms
5,376 KB
testcase_02 AC 35 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 35 ms
5,376 KB
testcase_09 AC 51 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 48 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 39 ms
5,376 KB
testcase_14 AC 35 ms
5,376 KB
testcase_15 AC 52 ms
5,376 KB
testcase_16 AC 48 ms
5,376 KB
testcase_17 AC 364 ms
5,376 KB
testcase_18 AC 354 ms
5,376 KB
testcase_19 AC 354 ms
5,376 KB
testcase_20 AC 341 ms
5,376 KB
testcase_21 AC 329 ms
5,376 KB
testcase_22 AC 361 ms
5,376 KB
testcase_23 AC 363 ms
5,376 KB
testcase_24 AC 359 ms
5,376 KB
testcase_25 AC 360 ms
5,376 KB
testcase_26 AC 365 ms
5,376 KB
testcase_27 AC 362 ms
5,376 KB
testcase_28 AC 366 ms
5,376 KB
testcase_29 AC 353 ms
5,376 KB
testcase_30 AC 108 ms
5,376 KB
testcase_31 AC 198 ms
5,376 KB
testcase_32 AC 278 ms
5,376 KB
testcase_33 AC 24 ms
5,376 KB
testcase_34 AC 305 ms
5,376 KB
testcase_35 AC 138 ms
5,376 KB
testcase_36 AC 66 ms
5,376 KB
testcase_37 AC 116 ms
5,376 KB
testcase_38 AC 342 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <complex>
#include <iomanip>
#include <iostream>
#include <queue>
#include <set>
#include <unordered_map>
#include <vector>
#define rep(i, j, n) for (int i = (j); i < (int)(n); ++i)
#define rrep(i, j, n) for (int i = (n)-1; i >= (int(j); --i)
using namespace std;
using ll = long long;
constexpr int INF = 1 << 30;
constexpr ll MOD = 1000000007;

int main() {
  int n, k;
  cin >> n >> k;
  vector<int> a(n);
  rep(i, 0, n) {
    cin >> a[i];
    a[i] -= k;
  }
  unordered_map<int, int> dp;
  dp[0] = 1;

  rep(i, 0, n) {
    unordered_map<int, int> ndp;
    for (int j = 10000; j >= -10000; --j) {
      ndp[j + a[i]] += dp[j];
      ndp[j] += dp[j];
      ndp[j + a[i]] %= MOD;
      ndp[j] %= MOD;
    }
    dp = ndp;
  }
  ll ans = 0;
  rep(i, 0, 10001) {
    ans += dp[i];
    ans %= MOD;
  }
  cout << ans - 1 << endl;
  return 0;
}
0