結果

問題 No.2528 pop_(backfront or not)
ユーザー akiaa11akiaa11
提出日時 2023-11-08 17:28:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 3,885 ms
コンパイル使用メモリ 265,992 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-09-25 23:49:24
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 10 ms
7,936 KB
testcase_10 AC 27 ms
18,432 KB
testcase_11 AC 30 ms
19,840 KB
testcase_12 AC 43 ms
27,264 KB
testcase_13 AC 47 ms
29,696 KB
testcase_14 AC 56 ms
35,968 KB
testcase_15 AC 85 ms
54,016 KB
testcase_16 AC 107 ms
65,792 KB
testcase_17 AC 109 ms
65,792 KB
testcase_18 AC 112 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define SELECTER(_1,_2,_3,SELECT,...) SELECT
#define rep1(i,n) for(int i=0;i<(int)n;++i)
#define rep2(i,a,n) for(int i=(int)a;i<(int)n;++i)
#define rep(...) SELECTER(__VA_ARGS__,rep2,rep1)(__VA_ARGS__)
#define RSELECTER(_1, _2, _3, RSELECT, ...) RSELECT
using namespace std;
using namespace atcoder;
using ll = long long;
using mint=modint998244353;
ostream& operator<<(ostream& out, const mint& a){return out << a.val();}
constexpr ll MOD = 998244353;

int main(){
	ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	int n;cin>>n;
	vector dp(n + 1, vector<ll>(2 * n + 1, 0));
	dp[0][0] = 1;
	rep(i, n + 1) rep(j, 2 * n + 1){
		if(i && j){
			dp[i][j] += dp[i - 1][j - 1];
			dp[i][j] += dp[i - 1][j - 1] * (i - 1) * (j - 1);
			dp[i][j] %= MOD;
		}
		if(i > 1) dp[i][j] += dp[i - 2][j] * (i - 1) * (i - 2) / 2;
		if(j > 1) dp[i][j] += dp[i][j - 2] * (j - 1) * (j - 2) / 2;
		dp[i][j] %= MOD;
	}
	rep(i, 2 * n + 1) cout<<dp[min(i, 2 * n - i)][max(i, 2 * n - i)]<<endl;
}
0