結果

問題 No.2528 pop_(backfront or not)
ユーザー tailstails
提出日時 2023-11-03 23:15:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 174,500 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-09-25 21:27:00
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
34,816 KB
testcase_01 AC 27 ms
34,816 KB
testcase_02 AC 25 ms
34,816 KB
testcase_03 AC 27 ms
34,816 KB
testcase_04 AC 28 ms
34,688 KB
testcase_05 AC 28 ms
34,816 KB
testcase_06 AC 30 ms
34,688 KB
testcase_07 AC 30 ms
34,816 KB
testcase_08 AC 29 ms
34,816 KB
testcase_09 AC 32 ms
34,688 KB
testcase_10 AC 39 ms
34,688 KB
testcase_11 AC 44 ms
34,816 KB
testcase_12 AC 50 ms
34,688 KB
testcase_13 AC 51 ms
34,816 KB
testcase_14 AC 55 ms
34,816 KB
testcase_15 AC 67 ms
34,688 KB
testcase_16 AC 76 ms
34,688 KB
testcase_17 AC 78 ms
34,816 KB
testcase_18 AC 77 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
Mint d[2001][4004];
d[0][1]=1;
ll@n;
rep(y,1,n+1){
	rep(x,1,2y){
		d[y][x+1]=d[y-1][x+1]*((2y-x-1)*(2y-x-2)/2)+d[y-1][x]*((2y-x-1)*(x-1)+1)+d[y-1][x-1]*((x-1)*(x-2)/2);
	}
}
rep(x,2n+1){
	wtLn(d[n][x+1]);
}
0