結果

問題 No.2763 Macaron Gift Box
ユーザー aplysiaSheepaplysiaSheep
提出日時 2024-05-19 15:11:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 508 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 10,400 KB
最終ジャッジ日時 2024-05-19 15:11:55
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,396 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

const int MOD = 998244353;

int main() {
    int N, K;
    std::cin >> N >> K;

    std::vector<int> dp(N + 1, 0);
    dp[0] = 1;

    for (int i = 1; i <= N; ++i) {
        for (int j = N; j >= i; --j) {
            for (int k = 1; k <= K && k * i <= j; ++k) {
                dp[j] = (dp[j] + dp[j - k * i]) % MOD;
            }
        }
    }

    for (int i = 1; i <= N; ++i) {
        std::cout << dp[i] << " ";
    }
    std::cout << std::endl;

    return 0;
}
0