結果

問題 No.2528 pop_(backfront or not)
ユーザー lloyzlloyz
提出日時 2023-11-12 18:47:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 201,728 KB
最終ジャッジ日時 2024-09-26 03:03:20
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 58 ms
61,696 KB
testcase_06 AC 60 ms
63,360 KB
testcase_07 AC 70 ms
65,920 KB
testcase_08 AC 84 ms
68,736 KB
testcase_09 AC 150 ms
85,888 KB
testcase_10 AC 286 ms
107,392 KB
testcase_11 AC 302 ms
109,696 KB
testcase_12 AC 388 ms
113,280 KB
testcase_13 AC 432 ms
129,408 KB
testcase_14 AC 511 ms
136,448 KB
testcase_15 AC 742 ms
178,432 KB
testcase_16 AC 884 ms
201,472 KB
testcase_17 AC 888 ms
201,728 KB
testcase_18 AC 889 ms
201,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

inv2 = pow(2, mod - 2, mod)
DP = [[0 for _ in range(2 * n + 1)] for _ in range(2 * n + 1)]
DP[0][0] = 1
for i in range(2 * n + 1):
    for j in range(2 * n + 1):
        if i >= 1 and j >= 1:
            DP[i][j] += DP[i - 1][j - 1] * ((i - 1) * (j - 1) + 1) % mod
            DP[i][j] %= mod
        if i >= 2:
            DP[i][j] += DP[i - 2][j] * (i - 1) * (i - 2) % mod * inv2 % mod
            DP[i][j] %= mod
        if j >= 2:
            DP[i][j] += DP[i][j - 2] * (j - 1) * (j - 2) % mod * inv2 % mod
            DP[i][j] %= mod
for i in range(2 * n + 1):
    print(DP[i][2 * n - i])
0