結果

問題 No.2926 Botaoshi
ユーザー yurina256yurina256
提出日時 2024-10-12 15:01:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 2,284 bytes
コンパイル時間 3,727 ms
コンパイル使用メモリ 234,300 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 15:01:35
合計ジャッジ時間 5,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 11 ms
6,816 KB
testcase_13 AC 10 ms
6,820 KB
testcase_14 AC 10 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 9 ms
6,820 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 7 ms
6,816 KB
testcase_20 AC 5 ms
6,816 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 7 ms
6,816 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 AC 6 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 4 ms
6,816 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 5 ms
6,816 KB
testcase_33 AC 8 ms
6,816 KB
testcase_34 AC 7 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 10 ms
6,820 KB
testcase_37 AC 10 ms
6,816 KB
testcase_38 AC 9 ms
6,816 KB
testcase_39 AC 11 ms
6,816 KB
testcase_40 AC 11 ms
6,820 KB
testcase_41 AC 10 ms
6,816 KB
testcase_42 AC 11 ms
6,816 KB
testcase_43 AC 11 ms
6,820 KB
testcase_44 AC 10 ms
6,820 KB
testcase_45 AC 11 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std; 
using namespace atcoder;
using mint = modint998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define length size()
#define __STDCPP_FLOAT128_T__
#define Real1024 float128_t
#define int long long
#define ll long long
#define ALL(v) (v).begin(), (v).end()
constexpr ll inf = 1001001001001001001ll;
constexpr ll mod = /* 1000000007*/ 998244353;
constexpr double pi = 3.141592653589793;

//小数出力
//cout << setprecision(12);
//max
template< typename T1, typename T2 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
//min
template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }
//print
void print() { cout << '\n'; }
template<typename T>
void print(const T &t) { cout << t << '\n'; }
template<typename Head, typename... Tail>
void print(const Head &head, const Tail &... tail) {
    cout << head << ' ';
    print(tail...);
}
//join
template<typename T> string join(vector<T> &vec ,const string &sp){
    int si = vec.length;
    if(si==0){
        return "";
    }else{
        stringstream ss;
        rep(i,si-1){
            ss << vec[i] << sp;
        }
        ss << vec[si - 1];
        return ss.str();
    }
}
bool in_range(int l,int x,int r){//閉区間
  return (l <= x ) && (x <= r);
}
int div_ceil(int x,int y){
  return (x+y-1)/y;
}
int blood(char x,char y){
  if(x == 'O' && y == 'O') return 3;
  if((x == 'A' && y == 'B') || (x == 'B' && y == 'A')) return 2;
  if(x == 'A' || y == 'A') return 0;
  return 1;
}
//Template End
signed main(void){
  int n;
  cin >> n;
  string s;
  cin >> s;
  vector<vector<mint>> dp(3,vector<mint>(n+1,0));//lru
  dp[2][0] = 1;
  rep(i,n){
    switch(s[i]){
      case 'L':
      dp[0][i+1] += dp[0][i] + dp[2][i];
      break;
      case 'R':
      dp[1][i+1] += dp[0][i]+dp[1][i]+dp[2][i];
      break;
      case 'U':
      dp[2][i+1] += dp[0][i]+dp[1][i]+dp[2][i];
      break;
      default:
      dp[0][i+1] += dp[0][i] + dp[2][i];
      dp[1][i+1] += dp[0][i]+dp[1][i]+dp[2][i];
      dp[2][i+1] += dp[0][i]+dp[1][i]+dp[2][i];
    }
    //rep(j,3) cout << dp[j][i+1].val() << " ";
    //cout << endl;
  }
  mint ans = 0;
  rep(i,3) ans += dp[i][n];
  cout << ans.val() << endl;
}
0