結果

問題 No.2528 pop_(backfront or not)
ユーザー 👑 p-adicp-adic
提出日時 2023-11-04 01:19:08
言語 cLay
(20240714-1)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 4,270 ms
コンパイル使用メモリ 183,772 KB
実行使用メモリ 68,172 KB
最終ジャッジ日時 2024-09-25 21:47:03
合計ジャッジ時間 6,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 15 ms
10,048 KB
testcase_10 AC 45 ms
20,552 KB
testcase_11 AC 47 ms
21,960 KB
testcase_12 AC 67 ms
27,520 KB
testcase_13 AC 75 ms
31,944 KB
testcase_14 AC 92 ms
38,216 KB
testcase_15 AC 150 ms
56,388 KB
testcase_16 AC 180 ms
65,920 KB
testcase_17 AC 178 ms
68,036 KB
testcase_18 AC 177 ms
68,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll@N,L=2N+1;Mint A[L][L]{{1}},z=0;Comb<Mint>c;rep(i,1,L)REP(j,1,L-i)A[i][j]=A[i-1][j-1]*((i-1)*(j-1)+1)+(i>2?A[i-2][j]*c.C(i-1,2):z)+(j>2?A[i][j-2]*c.C(j-1,2):z);rep(i,L)wt(A[i][L-i-1]);
0