結果

問題 No.2944 Sigma Partition Problem
ユーザー kazuppakazuppa
提出日時 2024-10-17 23:25:16
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 4,000 ms
コード長 627 bytes
コンパイル時間 5,506 ms
コンパイル使用メモリ 337,672 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-10-17 23:25:28
合計ジャッジ時間 10,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353;

int main() {
    int m = 4000;
    vector<vector<mint>> dp(m+1, vector<mint>(m + 1, 0));
    for(int i = 0; i <= m; i++)
        dp[0][i] = 1;
    for(int i = 0; i <= m; i++)
        for(int j = 0; j <= m; j++) {
            mint e = 0;
            if(j <= i) e += dp[i - j][j];
            dp[i][j] = dp[i][j - 1] + e;
        }
    int q;
    cin >> q;
    for(int i = 0; i < q; i++) {
        int t, n, k;
        cin >> t >> n >> k;
        cout << dp[n][k].val() << endl;
    }
}
0