結果

問題 No.2926 Botaoshi
ユーザー noriaokinoriaoki
提出日時 2024-10-12 15:47:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 95,336 KB
最終ジャッジ日時 2024-10-12 15:47:33
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,340 KB
testcase_01 AC 38 ms
53,100 KB
testcase_02 AC 35 ms
52,200 KB
testcase_03 AC 34 ms
51,996 KB
testcase_04 AC 33 ms
52,644 KB
testcase_05 AC 35 ms
52,592 KB
testcase_06 AC 34 ms
52,400 KB
testcase_07 AC 34 ms
52,812 KB
testcase_08 AC 34 ms
53,020 KB
testcase_09 AC 33 ms
52,132 KB
testcase_10 AC 34 ms
52,440 KB
testcase_11 AC 35 ms
52,928 KB
testcase_12 AC 121 ms
95,008 KB
testcase_13 AC 114 ms
94,436 KB
testcase_14 AC 119 ms
94,768 KB
testcase_15 AC 34 ms
52,820 KB
testcase_16 AC 117 ms
89,624 KB
testcase_17 AC 116 ms
92,900 KB
testcase_18 AC 74 ms
79,180 KB
testcase_19 AC 97 ms
87,116 KB
testcase_20 AC 83 ms
81,232 KB
testcase_21 AC 92 ms
84,700 KB
testcase_22 AC 99 ms
87,072 KB
testcase_23 AC 65 ms
77,608 KB
testcase_24 AC 107 ms
88,248 KB
testcase_25 AC 72 ms
78,820 KB
testcase_26 AC 114 ms
90,668 KB
testcase_27 AC 101 ms
84,820 KB
testcase_28 AC 63 ms
77,520 KB
testcase_29 AC 57 ms
76,912 KB
testcase_30 AC 74 ms
80,576 KB
testcase_31 AC 76 ms
79,808 KB
testcase_32 AC 93 ms
82,636 KB
testcase_33 AC 107 ms
89,572 KB
testcase_34 AC 101 ms
87,772 KB
testcase_35 AC 59 ms
70,820 KB
testcase_36 AC 121 ms
94,872 KB
testcase_37 AC 123 ms
95,084 KB
testcase_38 AC 125 ms
94,936 KB
testcase_39 AC 134 ms
94,964 KB
testcase_40 AC 122 ms
95,100 KB
testcase_41 AC 108 ms
94,900 KB
testcase_42 AC 109 ms
95,336 KB
testcase_43 AC 109 ms
94,984 KB
testcase_44 AC 108 ms
94,540 KB
testcase_45 AC 107 ms
94,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

dp = [[0]*2 for _ in range(n+1)]
dp[0][0] = 1
mod = 998244353
for i in range(n):
    if s[i] == 'L' or s[i] == '.':
        dp[i+1][0] += dp[i][0]
    if s[i] == 'R' or s[i] == '.':
        dp[i+1][1] += sum(dp[i])
    if s[i] == 'U' or s[i] == '.':
        dp[i+1][0] += sum(dp[i])
    dp[i+1][0] %= mod
    dp[i+1][1] %= mod

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