結果

問題 No.2926 Botaoshi
ユーザー ymskskyymsksky
提出日時 2024-10-26 16:09:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 502 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 96,744 KB
最終ジャッジ日時 2024-10-26 16:09:31
合計ジャッジ時間 7,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,356 KB
testcase_01 AC 36 ms
52,336 KB
testcase_02 AC 38 ms
52,156 KB
testcase_03 AC 37 ms
52,252 KB
testcase_04 AC 37 ms
52,744 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 36 ms
52,748 KB
testcase_09 RE -
testcase_10 AC 37 ms
52,344 KB
testcase_11 RE -
testcase_12 AC 148 ms
96,600 KB
testcase_13 AC 145 ms
95,872 KB
testcase_14 AC 157 ms
96,332 KB
testcase_15 AC 38 ms
53,248 KB
testcase_16 RE -
testcase_17 AC 120 ms
94,084 KB
testcase_18 RE -
testcase_19 AC 102 ms
87,880 KB
testcase_20 RE -
testcase_21 AC 106 ms
85,456 KB
testcase_22 AC 114 ms
87,460 KB
testcase_23 AC 67 ms
77,796 KB
testcase_24 AC 123 ms
89,024 KB
testcase_25 AC 78 ms
79,488 KB
testcase_26 AC 138 ms
91,888 KB
testcase_27 AC 112 ms
86,584 KB
testcase_28 AC 73 ms
77,848 KB
testcase_29 AC 69 ms
77,372 KB
testcase_30 AC 86 ms
81,472 KB
testcase_31 AC 72 ms
79,280 KB
testcase_32 RE -
testcase_33 AC 116 ms
90,676 KB
testcase_34 AC 114 ms
88,684 KB
testcase_35 AC 58 ms
67,916 KB
testcase_36 AC 166 ms
96,568 KB
testcase_37 AC 164 ms
96,628 KB
testcase_38 AC 154 ms
96,744 KB
testcase_39 AC 153 ms
96,448 KB
testcase_40 AC 161 ms
96,568 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
権限があれば一括ダウンロードができます

ソースコード

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["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