結果

問題 No.1238 選抜クラス
ユーザー DaYuanChiDaYuanChi
提出日時 2021-02-05 21:19:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 169,076 KB
実行使用メモリ 20,244 KB
最終ジャッジ日時 2024-07-02 11:28:51
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
7,012 KB
testcase_17 AC 11 ms
19,912 KB
testcase_18 AC 10 ms
19,360 KB
testcase_19 AC 10 ms
19,632 KB
testcase_20 AC 9 ms
19,140 KB
testcase_21 AC 10 ms
18,712 KB
testcase_22 AC 10 ms
20,084 KB
testcase_23 AC 11 ms
19,804 KB
testcase_24 AC 9 ms
19,676 KB
testcase_25 AC 11 ms
19,832 KB
testcase_26 AC 10 ms
19,836 KB
testcase_27 AC 10 ms
19,852 KB
testcase_28 AC 9 ms
19,920 KB
testcase_29 AC 10 ms
19,472 KB
testcase_30 AC 5 ms
9,156 KB
testcase_31 AC 7 ms
12,680 KB
testcase_32 AC 8 ms
16,688 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 10 ms
18,520 KB
testcase_35 AC 6 ms
10,916 KB
testcase_36 AC 4 ms
7,280 KB
testcase_37 AC 5 ms
9,876 KB
testcase_38 AC 10 ms
20,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

ll const MOD = 1e9+7;
ll dp[105][21000];

int main(){
  int n, k; cin >> n >> k;
  vector<int> a(n);
  for(int i = 0; i < n; i++){
    int A; cin >> A;
    A -= k;
    a[i] = A;
  }
  dp[0][10000] = 1;
  for(int i = 0; i < n; i++){
    for(int j = -10000; j <= 10000; j++){
      dp[i+1][j+10000] = (dp[i][j+10000])%MOD;
      dp[i+1][j+10000] = (dp[i+1][j+10000]+dp[i][j-a[i]+10000])%MOD;
    }
  }
  ll ans = 0;
  for(int i = 0; i <= 10000; i++){
    ans += (dp[n][i+10000])%MOD;
  }
  ans--;
  ans = (ans+MOD)%MOD;
  cout << ans << endl;
  return 0;
}
  
        
  
0