結果

問題 No.2926 Botaoshi
ユーザー ikomaikoma
提出日時 2024-10-12 16:57:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 76,804 KB
最終ジャッジ日時 2024-10-12 16:58:31
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 30 ms
52,096 KB
testcase_03 AC 32 ms
52,480 KB
testcase_04 AC 30 ms
52,224 KB
testcase_05 AC 31 ms
51,840 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 30 ms
51,840 KB
testcase_08 AC 30 ms
52,352 KB
testcase_09 AC 35 ms
52,352 KB
testcase_10 AC 32 ms
51,968 KB
testcase_11 AC 32 ms
52,608 KB
testcase_12 AC 146 ms
76,544 KB
testcase_13 AC 144 ms
76,804 KB
testcase_14 AC 179 ms
76,528 KB
testcase_15 AC 39 ms
59,264 KB
testcase_16 AC 32 ms
52,992 KB
testcase_17 AC 32 ms
53,120 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 33 ms
52,352 KB
testcase_21 AC 116 ms
76,416 KB
testcase_22 AC 123 ms
76,416 KB
testcase_23 AC 68 ms
76,544 KB
testcase_24 AC 127 ms
76,544 KB
testcase_25 AC 83 ms
76,288 KB
testcase_26 AC 147 ms
76,616 KB
testcase_27 AC 112 ms
76,288 KB
testcase_28 AC 59 ms
75,960 KB
testcase_29 AC 63 ms
76,160 KB
testcase_30 AC 78 ms
76,032 KB
testcase_31 AC 82 ms
76,416 KB
testcase_32 AC 102 ms
76,416 KB
testcase_33 AC 131 ms
76,520 KB
testcase_34 AC 116 ms
76,612 KB
testcase_35 AC 61 ms
76,032 KB
testcase_36 AC 151 ms
76,544 KB
testcase_37 AC 191 ms
76,800 KB
testcase_38 AC 185 ms
76,672 KB
testcase_39 AC 151 ms
76,784 KB
testcase_40 AC 151 ms
76,672 KB
testcase_41 AC 121 ms
76,544 KB
testcase_42 AC 125 ms
76,672 KB
testcase_43 AC 33 ms
53,632 KB
testcase_44 AC 117 ms
76,456 KB
testcase_45 AC 34 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if "RL" in S:
    print(0)
    exit()

if N==1:
    print(3 if S[0]=="." else 1)
    exit()

dic = {"L":0, "R":1, "U":2, ".":3}

dp = [[0]*3 for _ in range(3)]

s0,s1 = map(lambda x:dic[x], S[:2])
for i in range(3):
    if not (s0==i or s0==3):continue
    for j in range(3):
        if not (s1==j or s1==3):continue
        dp[j][i] = 1
dp[0][1] = 0 # 禁止

for s in S[2:]:
    s = dic[s]
    dp2 = [[0]*3 for _ in range(3)]
    if s < 3:
        for i in range(3):
            dp2[s][i] = sum(dp[i])%MOD
    else:
        for i in range(3):
            for j in range(3):
                for k in range(3):
                    dp2[k][j] += dp[j][i]
                    dp2[k][j] %= MOD
    dp2[0][1] = 0 # 禁止
    dp = dp2

print(sum(sum(d) for d in dp)%MOD)
0