結果

問題 No.2926 Botaoshi
ユーザー hato336hato336
提出日時 2024-10-12 15:15:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 110,240 KB
最終ジャッジ日時 2024-10-12 15:15:46
合計ジャッジ時間 8,767 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
85,816 KB
testcase_01 AC 118 ms
85,724 KB
testcase_02 AC 115 ms
85,680 KB
testcase_03 AC 117 ms
85,600 KB
testcase_04 AC 115 ms
85,748 KB
testcase_05 AC 113 ms
85,648 KB
testcase_06 AC 113 ms
85,724 KB
testcase_07 AC 114 ms
85,832 KB
testcase_08 AC 114 ms
85,776 KB
testcase_09 AC 115 ms
85,620 KB
testcase_10 AC 120 ms
85,752 KB
testcase_11 AC 122 ms
85,620 KB
testcase_12 AC 197 ms
110,080 KB
testcase_13 AC 190 ms
109,388 KB
testcase_14 AC 192 ms
109,620 KB
testcase_15 AC 116 ms
85,772 KB
testcase_16 AC 181 ms
103,700 KB
testcase_17 AC 196 ms
107,312 KB
testcase_18 AC 148 ms
90,436 KB
testcase_19 AC 171 ms
101,000 KB
testcase_20 AC 155 ms
90,740 KB
testcase_21 AC 178 ms
98,668 KB
testcase_22 AC 185 ms
100,568 KB
testcase_23 AC 145 ms
90,312 KB
testcase_24 AC 193 ms
102,616 KB
testcase_25 AC 153 ms
90,672 KB
testcase_26 AC 194 ms
105,180 KB
testcase_27 AC 164 ms
98,796 KB
testcase_28 AC 136 ms
90,332 KB
testcase_29 AC 145 ms
90,228 KB
testcase_30 AC 146 ms
90,512 KB
testcase_31 AC 150 ms
90,636 KB
testcase_32 AC 161 ms
96,032 KB
testcase_33 AC 189 ms
104,012 KB
testcase_34 AC 178 ms
101,632 KB
testcase_35 AC 145 ms
90,300 KB
testcase_36 AC 194 ms
110,020 KB
testcase_37 AC 201 ms
109,948 KB
testcase_38 AC 199 ms
110,096 KB
testcase_39 AC 192 ms
110,048 KB
testcase_40 AC 196 ms
109,940 KB
testcase_41 AC 194 ms
110,220 KB
testcase_42 AC 189 ms
110,240 KB
testcase_43 AC 196 ms
109,972 KB
testcase_44 AC 185 ms
109,448 KB
testcase_45 AC 194 ms
109,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n = int(input())
s = input().rstrip()
dp = [[0,0,0] for i in range(n)]
mod = 998244353
if s[0] == 'L':
    dp[0][0] = 1
elif s[0] == 'R':
    dp[0][1]= 1
elif s[0] == 'U':
    dp[0][2] = 1
else:
    dp[0][0] = 1
    dp[0][1] = 1
    dp[0][2] = 1
    
for i in range(1,n):
    for j in range(3):
        if j == 0:
            if s[i] == 'R'or s[i] == 'U':
                continue
        if j == 1:
            if s[i] == 'L'or s[i] == 'U':
                continue
        if j == 2:
            if s[i] == 'R'or s[i] == 'L':
                continue


        for k in range(3):
            if j == 0 and k == 1:
                continue
            dp[i][j] += dp[i-1][k]
            dp[i][j] %= mod
print(sum(dp[-1])%mod)
0