結果

問題 No.2874 Gunegune Tree
ユーザー miya145592miya145592
提出日時 2024-09-07 03:17:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 100,052 KB
最終ジャッジ日時 2024-09-07 03:17:20
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,884 KB
testcase_01 AC 33 ms
52,684 KB
testcase_02 AC 33 ms
53,076 KB
testcase_03 AC 68 ms
77,796 KB
testcase_04 AC 112 ms
86,252 KB
testcase_05 AC 77 ms
78,764 KB
testcase_06 AC 45 ms
63,804 KB
testcase_07 AC 178 ms
98,468 KB
testcase_08 AC 136 ms
87,092 KB
testcase_09 AC 56 ms
73,496 KB
testcase_10 AC 151 ms
95,200 KB
testcase_11 AC 135 ms
91,124 KB
testcase_12 AC 83 ms
81,376 KB
testcase_13 AC 177 ms
98,448 KB
testcase_14 AC 153 ms
94,556 KB
testcase_15 AC 70 ms
78,584 KB
testcase_16 AC 180 ms
99,248 KB
testcase_17 AC 83 ms
78,760 KB
testcase_18 AC 75 ms
78,568 KB
testcase_19 AC 72 ms
78,260 KB
testcase_20 AC 73 ms
78,800 KB
testcase_21 AC 100 ms
83,944 KB
testcase_22 AC 120 ms
87,520 KB
testcase_23 AC 98 ms
82,764 KB
testcase_24 AC 112 ms
85,648 KB
testcase_25 AC 141 ms
92,480 KB
testcase_26 AC 112 ms
86,032 KB
testcase_27 AC 206 ms
99,128 KB
testcase_28 AC 86 ms
81,952 KB
testcase_29 AC 131 ms
89,476 KB
testcase_30 AC 118 ms
86,604 KB
testcase_31 AC 99 ms
84,224 KB
testcase_32 AC 188 ms
100,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353
N = int(input())
dp = [[0 for _ in range(6)] for _ in range(N+1)]
dp[0][0] = 1
dir = [[1, 2, 3, 4, 5], [1, 2], [1, 2, 3], [2, 3, 4], [3, 4, 5], [4, 5]]
h = [-1, 0, 1, 1, 1, 0]
inv = [-1, 1]
for i in range(2, 6):
    inv.append(pow(i, MOD-2, MOD))
ans = 0
for i in range(N):
    for j in range(6):
        if dp[i][j]==0:
            continue
        for k in dir[j]:
            dp[i+1][k] += dp[i][j] * inv[len(dir[j])] % MOD
            dp[i+1][k] %= MOD
    for j in range(2, 5):
        ans += dp[i+1][j]
        ans %= MOD
print(ans)
0