結果

問題 No.2528 pop_(backfront or not)
ユーザー ニックネームニックネーム
提出日時 2023-11-03 21:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 139,264 KB
最終ジャッジ日時 2024-09-25 20:10:34
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 43 ms
51,968 KB
testcase_05 AC 54 ms
60,928 KB
testcase_06 AC 61 ms
62,208 KB
testcase_07 AC 62 ms
63,872 KB
testcase_08 AC 68 ms
66,176 KB
testcase_09 AC 88 ms
74,752 KB
testcase_10 AC 146 ms
92,288 KB
testcase_11 AC 150 ms
93,188 KB
testcase_12 AC 177 ms
93,016 KB
testcase_13 AC 187 ms
93,572 KB
testcase_14 AC 230 ms
110,080 KB
testcase_15 AC 325 ms
127,596 KB
testcase_16 AC 377 ms
138,868 KB
testcase_17 AC 377 ms
138,748 KB
testcase_18 AC 359 ms
139,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()); mod = 998244353
dp = [[0]*(2*n+1-i) for i in range(2*n+1)]; dp[1][1] = 1
for i in range(1,2*n+1):
    for j in range(1,2*n+1-i):
        if i>2: dp[i][j] += (i-2)*(i-1)//2*dp[i-2][j]
        if j>2: dp[i][j] += (j-2)*(j-1)//2*dp[i][j-2]
        if i>1<j: dp[i][j] += dp[i-1][j-1]*(i*j-i-j+2)
        dp[i][j] %= mod
for i in range(2*n+1): print(dp[i][-1])
0