結果

問題 No.1238 選抜クラス
ユーザー ぷらぷら
提出日時 2020-09-25 21:53:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 166,600 KB
実行使用メモリ 205,312 KB
最終ジャッジ日時 2024-06-28 06:29:01
合計ジャッジ時間 11,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 15 ms
8,192 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 14 ms
7,424 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 16 ms
8,192 KB
testcase_16 AC 14 ms
7,424 KB
testcase_17 AC 567 ms
205,312 KB
testcase_18 AC 533 ms
193,408 KB
testcase_19 AC 538 ms
197,248 KB
testcase_20 AC 507 ms
185,856 KB
testcase_21 AC 473 ms
174,720 KB
testcase_22 AC 565 ms
205,184 KB
testcase_23 AC 563 ms
205,312 KB
testcase_24 AC 566 ms
205,312 KB
testcase_25 AC 560 ms
205,184 KB
testcase_26 AC 565 ms
205,312 KB
testcase_27 AC 565 ms
205,056 KB
testcase_28 AC 565 ms
205,312 KB
testcase_29 AC 541 ms
197,376 KB
testcase_30 AC 58 ms
22,912 KB
testcase_31 AC 179 ms
66,048 KB
testcase_32 AC 339 ms
124,160 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 411 ms
150,016 KB
testcase_35 AC 87 ms
33,920 KB
testcase_36 AC 23 ms
10,880 KB
testcase_37 AC 65 ms
25,344 KB
testcase_38 AC 506 ms
185,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:15: warning: overflow in conversion from 'double' to 'int' changes value from '5.0e+18' to '2147483647' [-Woverflow]
    4 | int INF = 5e18+7;
      |           ~~~~^~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
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];
int 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];
                dp[i+1][j][k] %= mod;
                if(k+A <= 10000) {
                    dp[i+1][j+1][k+A] += dp[i][j][k];
                    dp[i+1][j+1][k+A] %= mod;
                }
            }
        }
    }
    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