結果

問題 No.2926 Botaoshi
ユーザー karinohitokarinohito
提出日時 2024-10-14 13:56:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 208,112 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-10-14 13:56:42
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 20 ms
14,336 KB
testcase_13 AC 19 ms
14,080 KB
testcase_14 AC 20 ms
13,952 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 16 ms
10,880 KB
testcase_17 AC 19 ms
12,800 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 14 ms
9,600 KB
testcase_20 AC 7 ms
6,016 KB
testcase_21 AC 11 ms
8,192 KB
testcase_22 AC 13 ms
9,344 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 14 ms
10,112 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 16 ms
11,648 KB
testcase_27 AC 11 ms
8,320 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 7 ms
6,016 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 9 ms
6,820 KB
testcase_33 AC 15 ms
11,052 KB
testcase_34 AC 15 ms
9,728 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 20 ms
14,324 KB
testcase_37 AC 19 ms
14,208 KB
testcase_38 AC 20 ms
14,336 KB
testcase_39 AC 19 ms
14,336 KB
testcase_40 AC 20 ms
14,308 KB
testcase_41 AC 21 ms
14,336 KB
testcase_42 AC 21 ms
14,208 KB
testcase_43 AC 21 ms
14,336 KB
testcase_44 AC 19 ms
13,952 KB
testcase_45 AC 20 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint = modint998244353;

void solve() {
    int N;
    string S;
    cin>>N>>S;
    vector<vector<mint>> DP(N,vector<mint>(3,0));
    if(S[0]=='L'||S[0]=='.')DP[0][0]=1;
    if(S[0]=='R'||S[0]=='.')DP[0][1]=1;
    if(S[0]=='U'||S[0]=='.')DP[0][2]=1;
    for(int i=1;i<N;i++){
        for(int j=0;j<1;j++){
            if(S[i]=='L'||S[i]=='.')DP[i][0]+=DP[i-1][0]+DP[i-1][2];
            if(S[i]=='R'||S[i]=='.')DP[i][1]+=DP[i-1][1]+DP[i-1][2]+DP[i-1][0];
            if(S[i]=='U'||S[i]=='.')DP[i][2]+=DP[i-1][1]+DP[i-1][0]+DP[i-1][2];
        }
    }
    mint an=DP[N-1][0]+DP[N-1][1]+DP[N-1][2];
    cout<<an.val()<<endl;
}

int main() {

    ios::sync_with_stdio(false);
    cin.tie(nullptr);


    // ll T;
    // cin>>T;
    // while(T--)
    solve();
}
0