結果

問題 No.2926 Botaoshi
ユーザー cyan515cyan515
提出日時 2024-11-17 19:39:38
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,435 bytes
コンパイル時間 5,203 ms
コンパイル使用メモリ 280,668 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-11-17 19:39:47
合計ジャッジ時間 8,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 24 ms
14,464 KB
testcase_13 AC 23 ms
14,032 KB
testcase_14 AC 23 ms
14,188 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 18 ms
11,076 KB
testcase_17 AC 20 ms
12,928 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 16 ms
9,600 KB
testcase_20 AC 8 ms
6,144 KB
testcase_21 AC 13 ms
8,192 KB
testcase_22 AC 15 ms
9,432 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 17 ms
10,240 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 19 ms
11,852 KB
testcase_27 AC 14 ms
8,448 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 8 ms
6,016 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 10 ms
7,040 KB
testcase_33 AC 19 ms
11,008 KB
testcase_34 AC 18 ms
9,856 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 23 ms
14,316 KB
testcase_37 AC 24 ms
14,464 KB
testcase_38 AC 25 ms
14,336 KB
testcase_39 AC 23 ms
14,336 KB
testcase_40 AC 24 ms
14,336 KB
testcase_41 AC 22 ms
14,336 KB
testcase_42 AC 24 ms
14,464 KB
testcase_43 AC 22 ms
14,456 KB
testcase_44 AC 21 ms
14,080 KB
testcase_45 AC 22 ms
13,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
using ll = long long;
const int INF = 1001001001;
const ll LINF = 3001001001001001001;
const int MOD = 998244353;
const string Yes = "Yes";
const string No = "No";
#define reps(i, a, n) for (ll i = (a); i < (ll)(n); ++i)
#define rep(i, n) reps(i, 0, n)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
template<typename T> istream &operator>>(istream &is, vector<T> &v) {for (T &in : v)is >> in;return is;}
// #include <ext/pb_ds/assoc_container.hpp>
// template<typename T>
// using ordered_set = __gnu_pbds::tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>;

int main() {
  int n;cin>>n;
  string s;cin>>s;
  vector dp(n+1,vector<mint>(3,0));
  dp.at(0).at(1) = 1;
  rep(i,n) {
    if(s.at(i)=='R'||s.at(i)=='.') {
      rep(j,3) dp.at(i+1).at(0) += dp.at(i).at(j);
    }
    if(s.at(i)=='U'||s.at(i)=='.') {
      rep(j,3) dp.at(i+1).at(1) += dp.at(i).at(j);
    }
    if(s.at(i)=='L'||s.at(i)=='.') {
      dp.at(i+1).at(2) += dp.at(i).at(1) + dp.at(i).at(2);
    }
  }
  mint ans = 0;
  rep(i,3) ans += dp.at(n).at(i);
  cout << ans.val() << endl;

  return 0;
}
0