結果

問題 No.2926 Botaoshi
ユーザー amesyuamesyu
提出日時 2024-10-12 19:05:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-12 19:05:47
合計ジャッジ時間 5,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 38 ms
52,036 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 111 ms
76,032 KB
testcase_13 AC 111 ms
76,164 KB
testcase_14 AC 113 ms
75,980 KB
testcase_15 AC 42 ms
51,712 KB
testcase_16 AC 101 ms
76,160 KB
testcase_17 AC 105 ms
76,800 KB
testcase_18 AC 85 ms
76,032 KB
testcase_19 AC 98 ms
76,032 KB
testcase_20 AC 90 ms
75,776 KB
testcase_21 AC 98 ms
75,648 KB
testcase_22 AC 105 ms
75,648 KB
testcase_23 AC 74 ms
75,776 KB
testcase_24 AC 106 ms
75,904 KB
testcase_25 AC 81 ms
75,776 KB
testcase_26 AC 127 ms
75,904 KB
testcase_27 AC 92 ms
75,904 KB
testcase_28 AC 72 ms
75,776 KB
testcase_29 AC 71 ms
75,776 KB
testcase_30 AC 82 ms
75,904 KB
testcase_31 AC 83 ms
75,904 KB
testcase_32 AC 92 ms
75,776 KB
testcase_33 AC 104 ms
75,904 KB
testcase_34 AC 97 ms
75,904 KB
testcase_35 AC 66 ms
68,352 KB
testcase_36 AC 123 ms
75,776 KB
testcase_37 AC 143 ms
76,032 KB
testcase_38 AC 125 ms
75,776 KB
testcase_39 AC 123 ms
76,160 KB
testcase_40 AC 121 ms
76,160 KB
testcase_41 AC 97 ms
76,032 KB
testcase_42 AC 95 ms
75,904 KB
testcase_43 AC 96 ms
76,288 KB
testcase_44 AC 97 ms
75,904 KB
testcase_45 AC 95 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0, 0, 0]
if s[0] == "L": dp[0] += 1
if s[0] == "R": dp[1] += 1
if s[0] == "U": dp[2] += 1
if s[0] == ".": dp = [1, 1, 1]

for i in range(1, n):
    ndp = [0, 0, 0]
    if s[i] == "L" or s[i] == ".":
        ndp[0] = (dp[0] + dp[2]) % MOD
    if s[i] == "R" or s[i] == ".":
        ndp[1] = sum(dp) % MOD
    if s[i] == "U" or s[i] == ".":
        ndp[2] = sum(dp) % MOD

    dp = ndp[::]
print(sum(dp)%MOD)

0