結果

問題 No.2926 Botaoshi
ユーザー noriocnorioc
提出日時 2024-10-12 18:41:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-10-12 18:42:08
合計ジャッジ時間 11,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 44 ms
53,120 KB
testcase_04 AC 42 ms
52,864 KB
testcase_05 AC 41 ms
52,864 KB
testcase_06 AC 42 ms
52,992 KB
testcase_07 AC 42 ms
52,864 KB
testcase_08 AC 42 ms
52,992 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 40 ms
52,992 KB
testcase_12 AC 316 ms
97,792 KB
testcase_13 AC 306 ms
97,152 KB
testcase_14 AC 344 ms
98,304 KB
testcase_15 AC 51 ms
60,800 KB
testcase_16 AC 230 ms
91,392 KB
testcase_17 AC 263 ms
94,976 KB
testcase_18 AC 122 ms
79,744 KB
testcase_19 AC 210 ms
88,704 KB
testcase_20 AC 142 ms
81,920 KB
testcase_21 AC 235 ms
86,784 KB
testcase_22 AC 262 ms
88,960 KB
testcase_23 AC 132 ms
78,720 KB
testcase_24 AC 271 ms
90,624 KB
testcase_25 AC 154 ms
80,384 KB
testcase_26 AC 309 ms
93,568 KB
testcase_27 AC 265 ms
87,936 KB
testcase_28 AC 145 ms
79,232 KB
testcase_29 AC 136 ms
78,436 KB
testcase_30 AC 189 ms
82,944 KB
testcase_31 AC 159 ms
80,640 KB
testcase_32 AC 198 ms
84,352 KB
testcase_33 AC 318 ms
92,672 KB
testcase_34 AC 263 ms
89,984 KB
testcase_35 AC 117 ms
76,672 KB
testcase_36 AC 369 ms
98,560 KB
testcase_37 AC 404 ms
98,560 KB
testcase_38 AC 363 ms
98,176 KB
testcase_39 AC 376 ms
98,304 KB
testcase_40 AC 370 ms
98,816 KB
testcase_41 AC 363 ms
97,920 KB
testcase_42 AC 352 ms
98,176 KB
testcase_43 AC 344 ms
98,176 KB
testcase_44 AC 375 ms
97,280 KB
testcase_45 AC 329 ms
96,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


# ステート遷移
class E(IntEnum):
    S = 0       # S
    L = auto()  # L
    U = auto()  # U
    R = auto()  # R

    def nexts(self):
        match self:
            case E.S: return [E.L, E.U, E.R]
            case E.L: return [E.L, E.U, E.R]
            case E.U: return [E.L, E.U, E.R]
            case E.R: return [E.U, E.R]
        assert False

    @staticmethod
    def states():
        for fm in E:
            for to in fm.nexts():
                yield fm, to


def is_match(c: str, to) -> bool:
    match c:
        case '.': return True
        case 'L': return to == E.L
        case 'U': return to == E.U
        case 'R': return to == E.R
    assert False


MOD = 998244353
N = int(input())
S = input()

dp = [[0] * len(E) for _ in range(N+1)]
dp[0][E.S] = 1
for i, c in enumerate(S):
    for fm, to in E.states():
        if dp[i][fm] == 0: continue
        if not is_match(c, to): continue
        dp[i+1][to] += dp[i][fm]
        dp[i+1][to] %= MOD

ans = sum(dp[N]) % MOD
print(ans)
0