結果

問題 No.2926 Botaoshi
ユーザー ymskskyymsksky
提出日時 2024-10-26 16:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-10-26 16:10:32
合計ジャッジ時間 6,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,676 KB
testcase_01 AC 37 ms
52,620 KB
testcase_02 AC 36 ms
52,776 KB
testcase_03 AC 39 ms
52,828 KB
testcase_04 AC 36 ms
52,276 KB
testcase_05 AC 38 ms
52,400 KB
testcase_06 AC 48 ms
52,224 KB
testcase_07 AC 37 ms
52,664 KB
testcase_08 AC 37 ms
52,064 KB
testcase_09 AC 37 ms
53,156 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 36 ms
52,196 KB
testcase_12 AC 147 ms
96,544 KB
testcase_13 AC 144 ms
96,144 KB
testcase_14 AC 157 ms
96,148 KB
testcase_15 AC 38 ms
52,900 KB
testcase_16 AC 106 ms
90,964 KB
testcase_17 AC 144 ms
94,208 KB
testcase_18 AC 72 ms
79,204 KB
testcase_19 AC 100 ms
87,908 KB
testcase_20 AC 79 ms
81,240 KB
testcase_21 AC 101 ms
85,232 KB
testcase_22 AC 112 ms
87,204 KB
testcase_23 AC 65 ms
77,892 KB
testcase_24 AC 121 ms
88,952 KB
testcase_25 AC 76 ms
79,596 KB
testcase_26 AC 135 ms
92,240 KB
testcase_27 AC 140 ms
85,872 KB
testcase_28 AC 73 ms
77,708 KB
testcase_29 AC 70 ms
77,268 KB
testcase_30 AC 89 ms
81,164 KB
testcase_31 AC 73 ms
79,520 KB
testcase_32 AC 87 ms
82,736 KB
testcase_33 AC 115 ms
90,588 KB
testcase_34 AC 108 ms
88,592 KB
testcase_35 AC 58 ms
68,128 KB
testcase_36 AC 157 ms
96,688 KB
testcase_37 AC 186 ms
96,868 KB
testcase_38 AC 153 ms
96,628 KB
testcase_39 AC 150 ms
96,504 KB
testcase_40 AC 161 ms
96,644 KB
testcase_41 AC 119 ms
96,896 KB
testcase_42 AC 118 ms
96,444 KB
testcase_43 AC 119 ms
96,540 KB
testcase_44 AC 117 ms
95,784 KB
testcase_45 AC 126 ms
95,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
mod = 998244353

# dp[i][j]: s[i - 1]が状態jの時の組み合わせ数
dp = [[0] * 3 for _ in range(n)]
c = s[0]
if c == ".":
    dp[0] = [1] * 3
else:
    dp[0]["LRU".index(c)] = 1
for i in range(1, n):
    c = s[i]
    if c in ".L":
        dp[i][0] = dp[i - 1][0] + dp[i - 1][2]
    if c in ".R":
        dp[i][1] = sum(dp[i - 1])
    if c in ".U":
        dp[i][2] = sum(dp[i - 1])
    for j in range(3):
        dp[i][j] %= mod

ans = sum(dp[n - 1]) % mod
print(ans)
0