結果

問題 No.2926 Botaoshi
ユーザー ikomaikoma
提出日時 2024-10-12 16:57:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 802 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-12 16:57:44
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 57 ms
52,264 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 193 ms
76,544 KB
testcase_13 AC 188 ms
76,544 KB
testcase_14 AC 188 ms
76,544 KB
testcase_15 AC 46 ms
59,136 KB
testcase_16 AC 39 ms
53,120 KB
testcase_17 AC 40 ms
53,120 KB
testcase_18 AC 40 ms
52,608 KB
testcase_19 AC 40 ms
52,992 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 136 ms
76,544 KB
testcase_22 AC 152 ms
76,544 KB
testcase_23 AC 87 ms
76,160 KB
testcase_24 AC 161 ms
76,520 KB
testcase_25 AC 98 ms
76,160 KB
testcase_26 AC 181 ms
76,672 KB
testcase_27 AC 125 ms
76,032 KB
testcase_28 AC 75 ms
76,160 KB
testcase_29 AC 71 ms
76,032 KB
testcase_30 AC 101 ms
75,904 KB
testcase_31 AC 104 ms
76,344 KB
testcase_32 AC 121 ms
76,648 KB
testcase_33 AC 167 ms
76,416 KB
testcase_34 AC 153 ms
76,288 KB
testcase_35 AC 85 ms
76,288 KB
testcase_36 AC 193 ms
76,544 KB
testcase_37 AC 202 ms
76,884 KB
testcase_38 AC 206 ms
76,800 KB
testcase_39 AC 199 ms
76,616 KB
testcase_40 AC 198 ms
76,612 KB
testcase_41 AC 170 ms
76,800 KB
testcase_42 AC 172 ms
76,496 KB
testcase_43 AC 42 ms
52,992 KB
testcase_44 AC 172 ms
77,056 KB
testcase_45 AC 42 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)

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