結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 70 ms
69,248 KB
testcase_06 AC 77 ms
73,984 KB
testcase_07 AC 104 ms
77,824 KB
testcase_08 AC 121 ms
78,720 KB
testcase_09 AC 237 ms
86,272 KB
testcase_10 AC 534 ms
107,392 KB
testcase_11 AC 562 ms
109,952 KB
testcase_12 AC 779 ms
124,544 KB
testcase_13 AC 840 ms
129,664 KB
testcase_14 AC 1,022 ms
142,080 KB
testcase_15 AC 1,543 ms
178,688 KB
testcase_16 AC 1,863 ms
202,112 KB
testcase_17 AC 1,877 ms
202,368 KB
testcase_18 AC 1,872 ms
202,368 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
        if i >= 2:
            DP[i][j] += DP[i - 2][j] * (i - 1) * (i - 2) * inv2 % 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