結果

問題 No.2926 Botaoshi
ユーザー H20H20
提出日時 2024-10-12 15:32:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-10-12 15:32:59
合計ジャッジ時間 5,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 126 ms
86,880 KB
testcase_13 AC 138 ms
86,400 KB
testcase_14 AC 134 ms
86,608 KB
testcase_15 AC 38 ms
51,816 KB
testcase_16 AC 100 ms
83,800 KB
testcase_17 AC 112 ms
85,764 KB
testcase_18 AC 87 ms
77,380 KB
testcase_19 AC 94 ms
82,048 KB
testcase_20 AC 77 ms
78,464 KB
testcase_21 AC 93 ms
80,344 KB
testcase_22 AC 103 ms
81,516 KB
testcase_23 AC 64 ms
76,256 KB
testcase_24 AC 116 ms
82,304 KB
testcase_25 AC 76 ms
77,248 KB
testcase_26 AC 125 ms
84,236 KB
testcase_27 AC 99 ms
80,512 KB
testcase_28 AC 61 ms
76,512 KB
testcase_29 AC 70 ms
76,108 KB
testcase_30 AC 85 ms
78,464 KB
testcase_31 AC 71 ms
77,312 KB
testcase_32 AC 101 ms
79,060 KB
testcase_33 AC 112 ms
83,448 KB
testcase_34 AC 95 ms
81,920 KB
testcase_35 AC 60 ms
66,304 KB
testcase_36 AC 148 ms
87,040 KB
testcase_37 AC 153 ms
86,880 KB
testcase_38 AC 147 ms
86,880 KB
testcase_39 AC 134 ms
86,656 KB
testcase_40 AC 145 ms
86,784 KB
testcase_41 AC 108 ms
87,168 KB
testcase_42 AC 102 ms
86,964 KB
testcase_43 AC 99 ms
86,656 KB
testcase_44 AC 103 ms
86,784 KB
testcase_45 AC 94 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N  = int(input())
S = list(input())
DP = [0]*3
mod = 998244353
v = list('LRU.').index(S[0])
if v==3:
    DP=[1]*3
else:
    DP[v]=1
for s in S[1:]:
    NDP = [0]*3
    if s=='L' or s=='.':
        NDP[0]=(DP[0]+DP[2])%mod
    if s=='R' or s=='.':
        NDP[1]=sum(DP)%mod
    if s=='U' or s=='.':
        NDP[2]=sum(DP)%mod

    DP = NDP
print(sum(DP)%mod)




0