結果

問題 No.2944 Sigma Partition Problem
ユーザー Today03Today03
提出日時 2024-10-19 12:37:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 4,000 ms
コード長 853 bytes
コンパイル時間 3,128 ms
コンパイル使用メモリ 250,836 KB
実行使用メモリ 128,640 KB
最終ジャッジ日時 2024-10-19 12:37:49
合計ジャッジ時間 10,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
128,512 KB
testcase_01 AC 206 ms
128,640 KB
testcase_02 AC 202 ms
128,512 KB
testcase_03 AC 205 ms
128,512 KB
testcase_04 AC 199 ms
128,640 KB
testcase_05 AC 202 ms
128,512 KB
testcase_06 AC 224 ms
128,512 KB
testcase_07 AC 201 ms
128,512 KB
testcase_08 AC 199 ms
128,512 KB
testcase_09 AC 202 ms
128,512 KB
testcase_10 AC 202 ms
128,512 KB
testcase_11 AC 205 ms
128,512 KB
testcase_12 AC 223 ms
128,640 KB
testcase_13 AC 205 ms
128,512 KB
testcase_14 AC 202 ms
128,512 KB
testcase_15 AC 206 ms
128,640 KB
testcase_16 AC 204 ms
128,512 KB
testcase_17 AC 205 ms
128,640 KB
testcase_18 AC 219 ms
128,512 KB
testcase_19 AC 205 ms
128,640 KB
testcase_20 AC 199 ms
128,512 KB
testcase_21 AC 204 ms
128,512 KB
testcase_22 AC 204 ms
128,640 KB
testcase_23 AC 221 ms
128,512 KB
testcase_24 AC 204 ms
128,512 KB
testcase_25 AC 205 ms
128,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
    int n = 4e3;
    vector<vector<mint>> partition(n + 1, vector<mint>(n + 1));
    partition[0][0] = 1;
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= i; j++) {
            partition[i][j] = partition[i - 1][j - 1] + partition[i - j][j];
        }
    }
    vector<vector<mint>> sum(n + 1, vector<mint>(n + 1));
    for (int i = 0; i <= n; i++) {
        sum[i][0] = partition[i][0];
        for (int j = 1; j <= n; j++) {
            sum[i][j] = sum[i][j - 1] + partition[i][j];
        }
    }

    int Q;
    cin >> Q;
    while (Q--) {
        int t, N, K;
        cin >> t >> N >> K;

        cout << sum[N][K].val() << '\n';
    }
}
0