結果

問題 No.1956 猫の額
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2022-05-25 01:05:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 732 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 171,140 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-09-20 14:38:19
合計ジャッジ時間 17,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 20 ms
5,504 KB
testcase_02 MLE -
testcase_03 AC 32 ms
6,400 KB
testcase_04 AC 634 ms
13,824 KB
testcase_05 AC 535 ms
13,056 KB
testcase_06 AC 540 ms
12,288 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 81 ms
7,936 KB
testcase_10 MLE -
testcase_11 AC 367 ms
10,496 KB
testcase_12 MLE -
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 77 ms
5,376 KB
testcase_15 AC 23 ms
5,888 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2022.05.25 01:05:29
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;


int main() {
    int n,m,c;cin >> n >> m >> c;
    int sum = 0;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        sum += a[i];
    }
    vector<vector<int>> dp(c+1,vector<int>(sum+1));
    dp[0][0] = 1;
    for (int i = 0; i < n; i++) {
        for (int j = c; j >= 1; j--) {
            for (int s = a[i]; s <= sum; s++) {
                dp[j][s] += dp[j-1][s-a[i]];
                dp[j][s] %= m;
            }
        }
    }
    for (int i = 1; i <= sum; i++) {
        cout << dp[c][i] << " ";
    }
    cout << endl;
    return 0;
}
0