結果

問題 No.2926 Botaoshi
ユーザー detteiuudetteiuu
提出日時 2024-10-12 15:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 97,116 KB
最終ジャッジ日時 2024-11-18 20:38:42
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,572 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 39 ms
52,272 KB
testcase_03 AC 39 ms
53,784 KB
testcase_04 AC 38 ms
53,420 KB
testcase_05 AC 39 ms
52,032 KB
testcase_06 AC 38 ms
53,236 KB
testcase_07 AC 39 ms
52,936 KB
testcase_08 AC 38 ms
52,656 KB
testcase_09 AC 39 ms
52,484 KB
testcase_10 AC 39 ms
53,252 KB
testcase_11 AC 39 ms
52,704 KB
testcase_12 AC 144 ms
97,116 KB
testcase_13 AC 137 ms
96,124 KB
testcase_14 AC 143 ms
96,244 KB
testcase_15 AC 39 ms
52,776 KB
testcase_16 AC 125 ms
90,848 KB
testcase_17 AC 135 ms
94,648 KB
testcase_18 AC 94 ms
80,012 KB
testcase_19 AC 115 ms
88,124 KB
testcase_20 AC 98 ms
81,792 KB
testcase_21 AC 111 ms
86,024 KB
testcase_22 AC 121 ms
87,528 KB
testcase_23 AC 75 ms
78,040 KB
testcase_24 AC 125 ms
88,972 KB
testcase_25 AC 87 ms
79,520 KB
testcase_26 AC 142 ms
91,944 KB
testcase_27 AC 108 ms
86,500 KB
testcase_28 AC 71 ms
78,260 KB
testcase_29 AC 69 ms
77,076 KB
testcase_30 AC 86 ms
81,216 KB
testcase_31 AC 92 ms
80,012 KB
testcase_32 AC 98 ms
83,332 KB
testcase_33 AC 132 ms
90,860 KB
testcase_34 AC 120 ms
89,148 KB
testcase_35 AC 70 ms
75,540 KB
testcase_36 AC 145 ms
96,864 KB
testcase_37 AC 147 ms
96,716 KB
testcase_38 AC 152 ms
96,444 KB
testcase_39 AC 150 ms
96,436 KB
testcase_40 AC 148 ms
96,860 KB
testcase_41 AC 120 ms
96,588 KB
testcase_42 AC 125 ms
96,484 KB
testcase_43 AC 122 ms
96,620 KB
testcase_44 AC 122 ms
95,796 KB
testcase_45 AC 122 ms
95,652 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