結果

問題 No.2926 Botaoshi
ユーザー detteiuudetteiuu
提出日時 2024-10-12 15:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 96,852 KB
最終ジャッジ日時 2024-11-29 07:05:00
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,808 KB
testcase_01 AC 40 ms
52,472 KB
testcase_02 AC 40 ms
52,808 KB
testcase_03 AC 42 ms
53,068 KB
testcase_04 AC 41 ms
53,128 KB
testcase_05 AC 43 ms
52,900 KB
testcase_06 AC 41 ms
53,044 KB
testcase_07 AC 42 ms
52,444 KB
testcase_08 AC 40 ms
52,284 KB
testcase_09 AC 40 ms
52,196 KB
testcase_10 AC 40 ms
53,016 KB
testcase_11 AC 40 ms
52,732 KB
testcase_12 AC 153 ms
96,732 KB
testcase_13 AC 148 ms
96,156 KB
testcase_14 AC 149 ms
95,944 KB
testcase_15 AC 40 ms
52,624 KB
testcase_16 AC 129 ms
91,104 KB
testcase_17 AC 134 ms
94,576 KB
testcase_18 AC 96 ms
79,952 KB
testcase_19 AC 120 ms
87,984 KB
testcase_20 AC 101 ms
81,764 KB
testcase_21 AC 114 ms
85,952 KB
testcase_22 AC 122 ms
88,028 KB
testcase_23 AC 80 ms
77,636 KB
testcase_24 AC 132 ms
88,820 KB
testcase_25 AC 91 ms
79,436 KB
testcase_26 AC 139 ms
92,100 KB
testcase_27 AC 107 ms
86,504 KB
testcase_28 AC 74 ms
77,660 KB
testcase_29 AC 72 ms
76,944 KB
testcase_30 AC 87 ms
80,972 KB
testcase_31 AC 97 ms
79,724 KB
testcase_32 AC 107 ms
82,988 KB
testcase_33 AC 137 ms
91,036 KB
testcase_34 AC 129 ms
89,172 KB
testcase_35 AC 73 ms
74,240 KB
testcase_36 AC 151 ms
96,308 KB
testcase_37 AC 155 ms
96,852 KB
testcase_38 AC 156 ms
96,560 KB
testcase_39 AC 157 ms
96,776 KB
testcase_40 AC 153 ms
96,472 KB
testcase_41 AC 126 ms
96,452 KB
testcase_42 AC 127 ms
96,764 KB
testcase_43 AC 127 ms
96,432 KB
testcase_44 AC 123 ms
95,788 KB
testcase_45 AC 124 ms
95,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

MOD = 998244353
dp = [[0]*3 for _ in range(N)]
if S[0] == ".":
    for i in range(3):
        dp[0][i] = 1
elif S[0] == "L":
    dp[0][1] = 1
else:
    dp[0][2] = 1

def judge(A, B):
    return A == B or A == "."

for i in range(1, N):
    if judge(S[i], "U"):
        dp[i][0] += sum(dp[i-1])%MOD
        dp[i][0] %= MOD
    if judge(S[i], "L"):
        dp[i][1] += (dp[i-1][0]+dp[i-1][1])%MOD
        dp[i][1] %= MOD
    if judge(S[i], "R"):
        dp[i][2] += sum(dp[i-1])%MOD
        dp[i][2] %= MOD

print(sum(dp[-1])%MOD)
0