結果

問題 No.1238 選抜クラス
ユーザー umezoumezo
提出日時 2020-09-25 23:19:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 196,076 KB
最終ジャッジ日時 2025-01-14 21:36:40
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,632 KB
testcase_01 AC 3 ms
9,808 KB
testcase_02 AC 6 ms
24,012 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 5 ms
17,868 KB
testcase_08 AC 8 ms
26,064 KB
testcase_09 AC 12 ms
38,348 KB
testcase_10 AC 5 ms
21,964 KB
testcase_11 AC 11 ms
38,344 KB
testcase_12 AC 8 ms
28,104 KB
testcase_13 AC 7 ms
28,236 KB
testcase_14 AC 6 ms
24,140 KB
testcase_15 AC 11 ms
42,444 KB
testcase_16 AC 10 ms
40,396 KB
testcase_17 AC 322 ms
424,400 KB
testcase_18 AC 304 ms
408,908 KB
testcase_19 AC 294 ms
416,584 KB
testcase_20 AC 270 ms
402,640 KB
testcase_21 AC 256 ms
389,580 KB
testcase_22 AC 302 ms
426,700 KB
testcase_23 AC 303 ms
426,956 KB
testcase_24 AC 308 ms
425,932 KB
testcase_25 AC 300 ms
427,212 KB
testcase_26 AC 306 ms
426,316 KB
testcase_27 AC 305 ms
426,568 KB
testcase_28 AC 351 ms
426,960 KB
testcase_29 AC 255 ms
425,552 KB
testcase_30 AC 35 ms
101,836 KB
testcase_31 AC 100 ms
239,180 KB
testcase_32 AC 173 ms
335,568 KB
testcase_33 AC 4 ms
19,920 KB
testcase_34 AC 200 ms
370,124 KB
testcase_35 AC 54 ms
142,792 KB
testcase_36 AC 17 ms
48,716 KB
testcase_37 AC 41 ms
107,980 KB
testcase_38 AC 241 ms
413,132 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