結果

問題 No.2926 Botaoshi
ユーザー mahiro0o0o0mahiro0o0o0
提出日時 2024-10-12 15:56:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,435 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 232,984 KB
実行使用メモリ 14,488 KB
最終ジャッジ日時 2024-10-12 15:56:55
合計ジャッジ時間 5,251 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 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 28 ms
14,336 KB
testcase_13 AC 27 ms
14,132 KB
testcase_14 AC 28 ms
14,080 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 16 ms
11,008 KB
testcase_17 AC 17 ms
12,928 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 13 ms
9,728 KB
testcase_20 AC 6 ms
6,144 KB
testcase_21 AC 14 ms
8,320 KB
testcase_22 AC 18 ms
9,344 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 19 ms
10,368 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 22 ms
11,776 KB
testcase_27 AC 16 ms
8,448 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 8 ms
6,016 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 11 ms
7,040 KB
testcase_33 AC 23 ms
11,136 KB
testcase_34 AC 21 ms
9,856 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 30 ms
14,336 KB
testcase_37 AC 30 ms
14,336 KB
testcase_38 AC 29 ms
14,336 KB
testcase_39 AC 29 ms
14,336 KB
testcase_40 AC 30 ms
14,464 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 21 ms
14,464 KB
testcase_44 WA -
testcase_45 AC 20 ms
13,824 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] + dp[i-1][2];
      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] + dp[i-1][2];
    } else {
      dp[i][0] = dp[i-1][0] + dp[i-1][2];
      dp[i][1] = dp[i-1][0] + dp[i-1][1] + dp[i-1][2];
      dp[i][2] = dp[i-1][0] + dp[i-1][1] + dp[i-1][2];
    }
    rep(k, 3){
      dp[i][k] %= mod;
    }
  }

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