結果

問題 No.1238 選抜クラス
ユーザー umezoumezo
提出日時 2020-09-25 23:19:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 204,256 KB
実行使用メモリ 401,616 KB
最終ジャッジ日時 2024-06-28 07:25:40
合計ジャッジ時間 9,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,500 KB
testcase_01 AC 4 ms
9,672 KB
testcase_02 AC 8 ms
24,012 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 5 ms
15,820 KB
testcase_08 AC 8 ms
26,052 KB
testcase_09 AC 13 ms
11,648 KB
testcase_10 AC 6 ms
5,760 KB
testcase_11 AC 12 ms
10,624 KB
testcase_12 AC 8 ms
7,936 KB
testcase_13 AC 7 ms
7,936 KB
testcase_14 AC 7 ms
7,040 KB
testcase_15 AC 12 ms
11,776 KB
testcase_16 AC 13 ms
10,624 KB
testcase_17 AC 452 ms
400,584 KB
testcase_18 AC 411 ms
378,832 KB
testcase_19 AC 422 ms
386,896 KB
testcase_20 AC 396 ms
364,364 KB
testcase_21 AC 368 ms
342,476 KB
testcase_22 AC 437 ms
401,104 KB
testcase_23 AC 437 ms
400,840 KB
testcase_24 AC 446 ms
401,612 KB
testcase_25 AC 438 ms
401,612 KB
testcase_26 AC 438 ms
401,616 KB
testcase_27 AC 444 ms
400,844 KB
testcase_28 AC 434 ms
400,592 KB
testcase_29 AC 417 ms
386,508 KB
testcase_30 AC 43 ms
53,320 KB
testcase_31 AC 136 ms
136,648 KB
testcase_32 AC 263 ms
244,936 KB
testcase_33 AC 6 ms
17,740 KB
testcase_34 AC 314 ms
295,372 KB
testcase_35 AC 70 ms
75,080 KB
testcase_36 AC 18 ms
16,896 KB
testcase_37 AC 52 ms
44,928 KB
testcase_38 AC 395 ms
363,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

const int MOD = 1000000007;

int dp[110][110][10010];

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