結果

問題 No.2528 pop_(backfront or not)
ユーザー lloyzlloyz
提出日時 2023-11-12 18:46:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,985 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 202,368 KB
最終ジャッジ日時 2024-09-26 03:03:13
合計ジャッジ時間 13,738 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 73 ms
69,632 KB
testcase_06 AC 82 ms
74,240 KB
testcase_07 AC 111 ms
77,952 KB
testcase_08 AC 128 ms
79,104 KB
testcase_09 AC 239 ms
86,272 KB
testcase_10 AC 569 ms
107,264 KB
testcase_11 AC 610 ms
110,208 KB
testcase_12 AC 834 ms
124,544 KB
testcase_13 AC 906 ms
129,408 KB
testcase_14 AC 1,098 ms
142,080 KB
testcase_15 AC 1,641 ms
179,072 KB
testcase_16 AC 1,974 ms
201,856 KB
testcase_17 AC 1,982 ms
202,368 KB
testcase_18 AC 1,985 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) * inv2 % mod
            DP[i][j] %= mod
        if j >= 2:
            DP[i][j] += DP[i][j - 2] * (j - 1) * (j - 2) * inv2 % mod
            DP[i][j] %= mod
for i in range(2 * n + 1):
    print(DP[i][2 * n - i])
0