結果

問題 No.2528 pop_(backfront or not)
ユーザー 👑 p-adicp-adic
提出日時 2023-11-04 01:27:45
言語 cLay
(20240714-1)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 174,740 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-09-25 21:47:42
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 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 5 ms
5,376 KB
testcase_09 AC 11 ms
8,064 KB
testcase_10 AC 33 ms
18,816 KB
testcase_11 AC 36 ms
19,968 KB
testcase_12 AC 51 ms
27,392 KB
testcase_13 AC 55 ms
29,696 KB
testcase_14 AC 68 ms
35,840 KB
testcase_15 AC 105 ms
54,016 KB
testcase_16 AC 128 ms
65,792 KB
testcase_17 AC 128 ms
65,920 KB
testcase_18 AC 128 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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