結果

問題 No.2926 Botaoshi
ユーザー t98slidert98slider
提出日時 2024-10-12 14:54:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 4,511 ms
コンパイル使用メモリ 267,444 KB
実行使用メモリ 14,536 KB
最終ジャッジ日時 2024-10-12 14:54:32
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 21 ms
14,196 KB
testcase_13 AC 21 ms
14,016 KB
testcase_14 AC 22 ms
14,116 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 15 ms
11,052 KB
testcase_17 AC 18 ms
12,892 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 13 ms
9,472 KB
testcase_20 AC 6 ms
6,816 KB
testcase_21 AC 11 ms
8,192 KB
testcase_22 AC 13 ms
9,372 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 14 ms
10,300 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 18 ms
11,744 KB
testcase_27 AC 12 ms
8,448 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 6 ms
6,820 KB
testcase_31 AC 5 ms
6,820 KB
testcase_32 AC 8 ms
6,820 KB
testcase_33 AC 15 ms
11,008 KB
testcase_34 AC 14 ms
9,856 KB
testcase_35 AC 3 ms
6,820 KB
testcase_36 AC 22 ms
14,332 KB
testcase_37 AC 22 ms
14,352 KB
testcase_38 AC 22 ms
14,360 KB
testcase_39 AC 21 ms
14,536 KB
testcase_40 AC 22 ms
14,312 KB
testcase_41 AC 20 ms
14,392 KB
testcase_42 AC 19 ms
14,384 KB
testcase_43 AC 20 ms
14,332 KB
testcase_44 AC 20 ms
13,964 KB
testcase_45 AC 17 ms
13,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    string s;
    cin >> n >> s;
    vector dp(n + 1, vector<mint>(3));
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 3; j++){
            if(s[i] == 'U'){
                dp[i + 1][0] += dp[i][j];
            }else if(s[i] == 'R'){
                dp[i + 1][1] += dp[i][j];
            }else if(s[i] == 'L'){
                if(j == 1) continue;
                dp[i + 1][2] += dp[i][j];
            }else{
                for(int k = 0; k < 3; k++){
                    if(j == 1 && k == 2) continue;
                    dp[i + 1][k] += dp[i][j];
                }
            }
        }
    }
    cout << accumulate(dp[n].begin(), dp[n].end(), mint(0)).val() << '\n';
}
0