結果

問題 No.2926 Botaoshi
ユーザー manuomanuo
提出日時 2024-10-12 15:54:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-10-12 15:54:08
合計ジャッジ時間 5,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,424 KB
testcase_01 AC 50 ms
55,296 KB
testcase_02 AC 51 ms
55,808 KB
testcase_03 AC 50 ms
55,552 KB
testcase_04 AC 51 ms
55,424 KB
testcase_05 AC 52 ms
55,808 KB
testcase_06 AC 52 ms
55,936 KB
testcase_07 AC 51 ms
55,808 KB
testcase_08 AC 52 ms
55,424 KB
testcase_09 AC 50 ms
55,424 KB
testcase_10 AC 51 ms
55,680 KB
testcase_11 AC 51 ms
55,552 KB
testcase_12 AC 104 ms
91,264 KB
testcase_13 AC 106 ms
91,264 KB
testcase_14 AC 104 ms
91,008 KB
testcase_15 AC 51 ms
55,552 KB
testcase_16 AC 123 ms
90,880 KB
testcase_17 AC 112 ms
90,880 KB
testcase_18 AC 79 ms
72,448 KB
testcase_19 AC 104 ms
88,064 KB
testcase_20 AC 81 ms
74,368 KB
testcase_21 AC 95 ms
85,888 KB
testcase_22 AC 100 ms
87,808 KB
testcase_23 AC 66 ms
67,328 KB
testcase_24 AC 102 ms
89,600 KB
testcase_25 AC 73 ms
70,144 KB
testcase_26 AC 106 ms
90,752 KB
testcase_27 AC 76 ms
74,240 KB
testcase_28 AC 93 ms
66,432 KB
testcase_29 AC 63 ms
65,792 KB
testcase_30 AC 68 ms
69,760 KB
testcase_31 AC 75 ms
71,296 KB
testcase_32 AC 79 ms
74,368 KB
testcase_33 AC 108 ms
90,624 KB
testcase_34 AC 105 ms
88,704 KB
testcase_35 AC 69 ms
67,072 KB
testcase_36 AC 106 ms
91,008 KB
testcase_37 AC 109 ms
91,008 KB
testcase_38 AC 109 ms
91,264 KB
testcase_39 AC 107 ms
91,136 KB
testcase_40 AC 107 ms
90,880 KB
testcase_41 AC 108 ms
90,880 KB
testcase_42 AC 107 ms
91,264 KB
testcase_43 AC 108 ms
91,264 KB
testcase_44 AC 106 ms
91,008 KB
testcase_45 AC 108 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cmp_to_key, cache
from heapq import heappop, heappush
import math, sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**7)
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<62
Yes, No = "Yes", "No"

N = int(input())
S = input()

dp = [[0]*3 for _ in range(N+1)]
dp[0][0] = 1
for i in range(N):
    if S[i] == "L" or S[i] == ".":
        dp[i+1][1] = dp[i][0]+dp[i][1]
        dp[i+1][1] %= MOD
    if S[i] == "R" or S[i] == ".":
        dp[i+1][2] = dp[i][0]+dp[i][1]+dp[i][2]
        dp[i+1][2] %= MOD
    if S[i] == "U" or S[i] == ".":
        dp[i+1][0] = dp[i][0]+dp[i][1]+dp[i][2]
        dp[i+1][0] %= MOD
print(sum(dp[N])%MOD)
0