結果

問題 No.2926 Botaoshi
ユーザー YuuuTYuuuT
提出日時 2024-10-12 15:12:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 97,188 KB
最終ジャッジ日時 2024-10-12 15:12:27
合計ジャッジ時間 5,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,900 KB
testcase_01 AC 45 ms
55,484 KB
testcase_02 AC 42 ms
54,932 KB
testcase_03 AC 40 ms
55,140 KB
testcase_04 AC 41 ms
54,832 KB
testcase_05 AC 40 ms
55,068 KB
testcase_06 AC 41 ms
55,868 KB
testcase_07 AC 39 ms
55,160 KB
testcase_08 AC 40 ms
55,576 KB
testcase_09 AC 41 ms
56,408 KB
testcase_10 AC 40 ms
55,144 KB
testcase_11 AC 41 ms
55,652 KB
testcase_12 AC 133 ms
96,844 KB
testcase_13 AC 135 ms
96,296 KB
testcase_14 AC 136 ms
96,244 KB
testcase_15 AC 40 ms
55,852 KB
testcase_16 AC 135 ms
91,484 KB
testcase_17 AC 124 ms
94,684 KB
testcase_18 AC 83 ms
80,176 KB
testcase_19 AC 109 ms
88,372 KB
testcase_20 AC 90 ms
82,072 KB
testcase_21 AC 102 ms
86,612 KB
testcase_22 AC 112 ms
88,228 KB
testcase_23 AC 76 ms
78,028 KB
testcase_24 AC 112 ms
89,808 KB
testcase_25 AC 78 ms
79,856 KB
testcase_26 AC 119 ms
92,360 KB
testcase_27 AC 95 ms
86,568 KB
testcase_28 AC 68 ms
78,184 KB
testcase_29 AC 73 ms
77,768 KB
testcase_30 AC 80 ms
81,808 KB
testcase_31 AC 83 ms
80,440 KB
testcase_32 AC 96 ms
83,544 KB
testcase_33 AC 128 ms
91,244 KB
testcase_34 AC 112 ms
89,820 KB
testcase_35 AC 66 ms
72,104 KB
testcase_36 AC 142 ms
97,188 KB
testcase_37 AC 136 ms
96,664 KB
testcase_38 AC 135 ms
97,000 KB
testcase_39 AC 140 ms
96,932 KB
testcase_40 AC 138 ms
96,868 KB
testcase_41 AC 111 ms
96,928 KB
testcase_42 AC 112 ms
97,032 KB
testcase_43 AC 111 ms
97,008 KB
testcase_44 AC 124 ms
96,024 KB
testcase_45 AC 119 ms
95,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
N = ii()
S = input()
dp = [[0,0,0] for _ in range(N+1)]
if S[0]=="L" or S[0]==".": dp[1][0] = 1
if S[0]=="R" or S[0]==".": dp[1][1] = 1
if S[0]=="U" or S[0]==".": dp[1][2] = 1
for i in range(1,N):
    if S[i]=="L" or S[i]==".":
        dp[i+1][0] = dp[i][0] + dp[i][2]
        dp[i+1][0] %= mod
    if S[i]=="R" or S[i]==".":
        dp[i+1][1] = sum(dp[i])
        dp[i+1][1] %= mod
    if S[i]=="U" or S[i]==".":
        dp[i+1][2] = sum(dp[i])
        dp[i+1][2] %= mod
    
print(sum(dp[N])%mod)
0