結果

問題 No.2944 Sigma Partition Problem
ユーザー hitonanodehitonanode
提出日時 2024-10-18 21:33:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 4,000 ms
コード長 588 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 90,828 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-10-18 22:19:54
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
66,048 KB
testcase_01 AC 71 ms
66,048 KB
testcase_02 AC 71 ms
66,048 KB
testcase_03 AC 72 ms
66,176 KB
testcase_04 AC 71 ms
66,176 KB
testcase_05 AC 72 ms
66,176 KB
testcase_06 AC 71 ms
66,176 KB
testcase_07 AC 71 ms
66,048 KB
testcase_08 AC 71 ms
66,048 KB
testcase_09 AC 72 ms
66,176 KB
testcase_10 AC 71 ms
66,048 KB
testcase_11 AC 71 ms
66,048 KB
testcase_12 AC 72 ms
66,048 KB
testcase_13 AC 72 ms
66,176 KB
testcase_14 AC 71 ms
66,176 KB
testcase_15 AC 71 ms
66,176 KB
testcase_16 AC 71 ms
66,176 KB
testcase_17 AC 71 ms
66,176 KB
testcase_18 AC 72 ms
66,048 KB
testcase_19 AC 71 ms
66,176 KB
testcase_20 AC 70 ms
66,176 KB
testcase_21 AC 71 ms
66,176 KB
testcase_22 AC 71 ms
66,176 KB
testcase_23 AC 71 ms
66,176 KB
testcase_24 AC 71 ms
66,176 KB
testcase_25 AC 71 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
constexpr int md = 998244353;
constexpr int N = 4010;
using namespace std;

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);

    vector dp(N, vector<int>(N));
    dp.at(0).at(0) = 1;
    for (int v = 1; v < N; ++v) {
        dp[v] = dp[v - 1];
        for (int i = 0; i < N - v; ++i) {
            dp[v][i + v] += dp[v][i];
            if (dp[v][i + v] >= md) dp[v][i + v] -= md;
        }
    }

    int Q;
    cin >> Q;

    while (Q--) {
        int tp, n, k;
        cin >> tp >> n >> k;
        cout << dp[k][n] << '\n';
    }
}
0