結果

問題 No.2926 Botaoshi
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-12 15:45:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-12 15:45:14
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
55,680 KB
testcase_01 AC 51 ms
55,680 KB
testcase_02 AC 50 ms
55,296 KB
testcase_03 AC 50 ms
55,680 KB
testcase_04 AC 49 ms
55,680 KB
testcase_05 AC 49 ms
55,808 KB
testcase_06 AC 49 ms
55,680 KB
testcase_07 AC 48 ms
55,680 KB
testcase_08 AC 50 ms
55,552 KB
testcase_09 AC 51 ms
55,424 KB
testcase_10 AC 51 ms
55,680 KB
testcase_11 AC 49 ms
55,680 KB
testcase_12 AC 74 ms
76,928 KB
testcase_13 AC 73 ms
77,056 KB
testcase_14 AC 78 ms
77,184 KB
testcase_15 AC 50 ms
55,552 KB
testcase_16 AC 83 ms
77,184 KB
testcase_17 AC 84 ms
77,312 KB
testcase_18 AC 74 ms
71,296 KB
testcase_19 AC 80 ms
76,800 KB
testcase_20 AC 74 ms
73,856 KB
testcase_21 AC 77 ms
76,672 KB
testcase_22 AC 75 ms
76,928 KB
testcase_23 AC 62 ms
65,792 KB
testcase_24 AC 77 ms
76,800 KB
testcase_25 AC 65 ms
69,504 KB
testcase_26 AC 77 ms
77,056 KB
testcase_27 AC 77 ms
76,544 KB
testcase_28 AC 57 ms
65,536 KB
testcase_29 AC 63 ms
66,304 KB
testcase_30 AC 67 ms
72,064 KB
testcase_31 AC 68 ms
70,528 KB
testcase_32 AC 78 ms
76,544 KB
testcase_33 AC 79 ms
77,056 KB
testcase_34 AC 80 ms
76,800 KB
testcase_35 AC 59 ms
63,616 KB
testcase_36 AC 82 ms
77,056 KB
testcase_37 AC 82 ms
77,056 KB
testcase_38 AC 79 ms
76,928 KB
testcase_39 AC 75 ms
76,928 KB
testcase_40 AC 81 ms
77,056 KB
testcase_41 AC 80 ms
76,928 KB
testcase_42 AC 81 ms
77,056 KB
testcase_43 AC 82 ms
77,056 KB
testcase_44 AC 81 ms
77,056 KB
testcase_45 AC 80 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
# from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

N = int(input())
S = input()
dp = [0]*3
if S[0] == "L":
    dp[0] = 1
elif S[0] == "R":
    dp[1] = 1
elif S[0] == "U":
    dp[2] = 1
else:
    dp[0] = 1
    dp[1] = 1
    dp[2] = 1

for i in range(1, N):
    s = S[i]
    ndp = [0]*3
    if s == "L":
        ndp[0] = dp[0]+dp[2]
    elif s == "R":
        ndp[1] = dp[0]+dp[1]+dp[2]
    elif s == "U":
        ndp[2] = dp[0]+dp[1]+dp[2]
    else:
        ndp[0] = dp[0]+dp[2]
        ndp[1] = dp[0]+dp[1]+dp[2]
        ndp[2] = dp[0]+dp[1]+dp[2]
    dp = ndp
    dp[0] %= mod2
    dp[1] %= mod2
    dp[2] %= mod2
print(sum(dp)%mod2)
0