結果

問題 No.2926 Botaoshi
ユーザー mahiro0o0o0mahiro0o0o0
提出日時 2024-10-12 15:58:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,499 bytes
コンパイル時間 3,948 ms
コンパイル使用メモリ 231,228 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-10-12 15:58:37
合計ジャッジ時間 5,902 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 40 ms
14,336 KB
testcase_13 AC 40 ms
14,208 KB
testcase_14 AC 38 ms
14,208 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 16 ms
11,008 KB
testcase_17 AC 19 ms
12,928 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 20 ms
8,320 KB
testcase_22 AC 23 ms
9,344 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 25 ms
10,368 KB
testcase_25 AC 7 ms
5,248 KB
testcase_26 AC 30 ms
11,776 KB
testcase_27 AC 20 ms
8,448 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 12 ms
6,144 KB
testcase_31 AC 8 ms
5,248 KB
testcase_32 AC 14 ms
6,912 KB
testcase_33 AC 27 ms
11,008 KB
testcase_34 AC 25 ms
9,984 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 39 ms
14,336 KB
testcase_37 AC 40 ms
14,336 KB
testcase_38 AC 40 ms
14,464 KB
testcase_39 AC 39 ms
14,336 KB
testcase_40 AC 40 ms
14,336 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 23 ms
14,464 KB
testcase_44 WA -
testcase_45 AC 22 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define rep2(i, k, n) for (ll i = (ll)(k); i < (ll)(n); i++)
#define repM(i, k, n) for (ll i = (ll)(k); i > (ll)(n); i--)
#define all(v) v.begin(), v.end()
using ll = long long;
ll mod = 998244353;

int main() {
  ll N, ans = 0;
  string S;
  cin >> N >> S;
  // map<char, ll> M;
  // M['L'] = 0, M['R'] = 1, M['L'] = 2;
  vector<vector<ll>> dp(N, vector<ll> (3));

  rep(i, N-1){
    if(S.substr(i, 2) == "RL"){
      cout << 0;
      return 0;
    }
  }
  rep(i, 3){
    dp[0][i] = 1;
    if(S[0] == 'L'){
      dp[0][0] = 0; 
    } else if(S[0] == 'R'){
      dp[0][1] = 0; 
    } else if(S[0] == 'U'){
      dp[0][2] = 0; 
    }
  }
  rep2(i, 1, N){
    if(S[i] == 'L'){
      dp[i][0] = dp[i-1][0] + dp[i-1][2];
      dp[i][1] = 0;
      dp[i][2] = 0; 
    } else if(S[i] == 'R'){
      dp[i][0] = 0;
      dp[i][1] = ((dp[i-1][0] + dp[i-1][1]) % mod + dp[i-1][2]) % mod;
      dp[i][2] = 0; 
    } else if(S[i] == 'U'){
      dp[i][0] = 0;
      dp[i][1] = 0;
      dp[i][2] = ((dp[i-1][0] + dp[i-1][1]) % mod + dp[i-1][2]) % mod;
    } else {
      dp[i][0] = dp[i-1][0] + dp[i-1][2];
      dp[i][1] = ((dp[i-1][0] + dp[i-1][1]) % mod + dp[i-1][2]) % mod;
      dp[i][2] = ((dp[i-1][0] + dp[i-1][1]) % mod + dp[i-1][2]) % mod;
    }
    rep(k, 3){
      dp[i][k] %= mod;
    }
  }

  cout << ((dp[N-1][0] + dp[N-1][1] % mod) + dp[N-1][2]) % mod;
}
0