結果

問題 No.2944 Sigma Partition Problem
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-10-18 22:52:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 4,000 ms
コード長 500 bytes
コンパイル時間 2,678 ms
コンパイル使用メモリ 200,316 KB
実行使用メモリ 66,248 KB
最終ジャッジ日時 2024-10-18 22:56:27
合計ジャッジ時間 5,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
65,428 KB
testcase_01 AC 89 ms
65,868 KB
testcase_02 AC 87 ms
66,172 KB
testcase_03 AC 89 ms
65,564 KB
testcase_04 AC 87 ms
65,620 KB
testcase_05 AC 118 ms
65,624 KB
testcase_06 AC 102 ms
65,532 KB
testcase_07 AC 88 ms
66,248 KB
testcase_08 AC 85 ms
65,696 KB
testcase_09 AC 88 ms
65,876 KB
testcase_10 AC 87 ms
65,436 KB
testcase_11 AC 90 ms
65,888 KB
testcase_12 AC 87 ms
65,444 KB
testcase_13 AC 127 ms
65,792 KB
testcase_14 AC 104 ms
65,840 KB
testcase_15 AC 88 ms
65,904 KB
testcase_16 AC 86 ms
66,068 KB
testcase_17 AC 88 ms
66,100 KB
testcase_18 AC 86 ms
65,588 KB
testcase_19 AC 89 ms
65,508 KB
testcase_20 AC 87 ms
65,432 KB
testcase_21 AC 89 ms
66,024 KB
testcase_22 AC 98 ms
65,628 KB
testcase_23 AC 89 ms
65,528 KB
testcase_24 AC 86 ms
65,744 KB
testcase_25 AC 89 ms
65,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int const m = 998244353;
int main () {
	int M[4040][4040], S[4040][4040], L[4040][4040];
	M[1][1] = S[1][1] = 1;
	M[0][0] = S[0][0] = 1;
	for (int i = 1; i < 4004;i ++) {
		M[i][1] = 1;
		S[i][1] = 1;
		for (int j = 2; j <= i; j ++) {
			M[i][j] = S[i - j][min(i - j, j)];
			S[i][j] = (S[i][j - 1] + M[i][j]) % m;
		}
	}
	int Q;
	cin >> Q;
	while (Q--) {
		int t;
		cin >> t;
		int n, k;
		cin >> n >> k;
		k = min(n, k);
		cout << S[n][k] << endl;
	}
}
0