結果

問題 No.1238 選抜クラス
ユーザー didi just isdidi just is
提出日時 2023-01-07 17:36:01
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 8,594 ms
コンパイル使用メモリ 162,584 KB
実行使用メモリ 21,688 KB
最終ジャッジ日時 2024-12-14 17:02:00
合計ジャッジ時間 8,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
9,580 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 3 ms
7,720 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 61 ms
16,928 KB
testcase_18 AC 54 ms
17,272 KB
testcase_19 AC 53 ms
17,384 KB
testcase_20 AC 51 ms
16,080 KB
testcase_21 AC 47 ms
16,344 KB
testcase_22 AC 4 ms
12,024 KB
testcase_23 AC 4 ms
14,036 KB
testcase_24 AC 118 ms
21,268 KB
testcase_25 AC 116 ms
21,688 KB
testcase_26 AC 60 ms
18,016 KB
testcase_27 AC 60 ms
16,880 KB
testcase_28 AC 55 ms
18,464 KB
testcase_29 AC 57 ms
17,748 KB
testcase_30 AC 5 ms
6,820 KB
testcase_31 AC 16 ms
11,692 KB
testcase_32 AC 30 ms
15,604 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 40 ms
18,204 KB
testcase_35 AC 6 ms
6,820 KB
testcase_36 AC 3 ms
7,660 KB
testcase_37 AC 6 ms
8,472 KB
testcase_38 AC 54 ms
16,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=110,mod=1e9+7;
int n,m,k;
int f[3][N][N*N];
int a[N];
inline void solve(){
    cin>>n>>k;
    int sum=0;
    for(int i=1;i<=n;i++) cin>>a[i],sum+=a[i];

    f[0][0][0]=1;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=i;j++){
            for(int z=0;z<=sum;z++){
                int &x=f[i&1][j][z];
                x=f[(i-1)&1][j][z];
                if(z>=a[i]&&j>=1) x=(x+f[(i-1)&1][j-1][z-a[i]])%mod;
            }
        }
    }
    int res=0;
    for(int i=1;i<=n;i++){
        for(int j=i*k;j<=sum;j++){
            res=(res+f[n&1][i][j])%mod;
        }
    }
    cout<<res<<endl;
}
signed main(){
    int T=1; //cin>>T;
    while(T--){
        solve();
    }
    return 0;
}
0