結果

問題 No.1238 選抜クラス
ユーザー ぷらぷら
提出日時 2020-09-25 21:50:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 842 bytes
コンパイル時間 1,590 ms
コンパイル使用メモリ 167,576 KB
実行使用メモリ 487,748 KB
最終ジャッジ日時 2024-06-28 06:25:16
合計ジャッジ時間 8,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,620 KB
testcase_01 AC 4 ms
9,672 KB
testcase_02 AC 8 ms
18,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,632 KB
testcase_08 AC 7 ms
7,680 KB
testcase_09 AC 11 ms
12,928 KB
testcase_10 AC 5 ms
6,272 KB
testcase_11 AC 10 ms
11,776 KB
testcase_12 AC 7 ms
8,576 KB
testcase_13 AC 7 ms
8,704 KB
testcase_14 AC 6 ms
7,552 KB
testcase_15 AC 11 ms
12,800 KB
testcase_16 AC 10 ms
11,648 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 317 ms
402,760 KB
testcase_20 WA -
testcase_21 AC 310 ms
357,836 KB
testcase_22 WA -
testcase_23 AC 351 ms
418,636 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 340 ms
418,888 KB
testcase_28 AC 341 ms
418,756 KB
testcase_29 AC 330 ms
403,144 KB
testcase_30 AC 35 ms
54,468 KB
testcase_31 AC 102 ms
139,208 KB
testcase_32 AC 205 ms
256,328 KB
testcase_33 AC 6 ms
17,868 KB
testcase_34 WA -
testcase_35 AC 47 ms
75,208 KB
testcase_36 AC 18 ms
29,896 KB
testcase_37 AC 36 ms
59,592 KB
testcase_38 AC 309 ms
372,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 5e18+7;
int mod = 1e9+7;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
long double pi = 3.141592653589793238;
int dp[110][110][10010];
signed main() {
    int N,K;
    cin >> N >> K;
    dp[0][0][0] = 1;
    for(int i = 0; i < N; i++) {
        int A;
        cin >> A;
        for(int j = 0; j <= i; j++) {
            for(int k = 0; k <= 10000; k++) {
                dp[i+1][j][k] += dp[i][j][k];
                if(k+A <= 10000) {
                    dp[i+1][j+1][k+A] += dp[i][j][k];
                }
            }
        }
    }
    int ans = 0;
    for(int i = 1; i <= N; i++) {
        for(int j = K*i; j <= 10000; j++) {
            ans += dp[N][i][j];
            ans %= mod;
        }
    }
    cout << ans << endl;
}
0