結果

問題 No.2528 pop_(backfront or not)
ユーザー ripityripity
提出日時 2023-11-03 22:24:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 4,542 ms
コンパイル使用メモリ 266,988 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-09-25 20:47:41
合計ジャッジ時間 5,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 11 ms
7,936 KB
testcase_10 AC 36 ms
18,560 KB
testcase_11 AC 40 ms
19,968 KB
testcase_12 AC 58 ms
27,264 KB
testcase_13 AC 67 ms
29,696 KB
testcase_14 AC 82 ms
35,968 KB
testcase_15 AC 125 ms
54,144 KB
testcase_16 AC 149 ms
65,792 KB
testcase_17 AC 157 ms
65,920 KB
testcase_18 AC 157 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

int main() {
	int N;
	cin >> N;
	vector<vector<mint>> dp(2*N+1, vector<mint>(2*N+1));
	dp[1][1] = 1;
	for( long long s = 2; s <= 2*N-2; s+=2 ) {
		for( long long x = 1, y = s-1; x <= s-1; x++, y-- ) {
			dp[x+1][y+1] += dp[x][y]*(x*y+1);
			dp[x+2][y+0] += dp[x][y]*(x*(x+1)/2);
			dp[x+0][y+2] += dp[x][y]*(y*(y+1)/2);
		}
	}
	for( int k = 1; k <= 2*N+1; k++ ) {
		cout << dp[k-1][2*N-k+1].val() << endl;
	}
}
0