結果

問題 No.2926 Botaoshi
ユーザー a01sa01toa01sa01to
提出日時 2024-10-21 00:11:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 3,192 ms
コンパイル使用メモリ 251,752 KB
実行使用メモリ 14,468 KB
最終ジャッジ日時 2024-10-21 00:12:04
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 22 ms
14,468 KB
testcase_13 AC 22 ms
14,128 KB
testcase_14 AC 21 ms
14,020 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 17 ms
10,956 KB
testcase_17 AC 21 ms
13,000 KB
testcase_18 AC 5 ms
6,820 KB
testcase_19 AC 15 ms
9,600 KB
testcase_20 AC 7 ms
6,820 KB
testcase_21 AC 12 ms
8,192 KB
testcase_22 AC 14 ms
9,472 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 15 ms
10,224 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 17 ms
11,688 KB
testcase_27 AC 13 ms
8,448 KB
testcase_28 AC 4 ms
6,816 KB
testcase_29 AC 3 ms
6,820 KB
testcase_30 AC 7 ms
6,820 KB
testcase_31 AC 5 ms
6,820 KB
testcase_32 AC 10 ms
6,912 KB
testcase_33 AC 17 ms
11,148 KB
testcase_34 AC 15 ms
9,864 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 21 ms
14,428 KB
testcase_37 AC 22 ms
14,372 KB
testcase_38 AC 22 ms
14,372 KB
testcase_39 AC 22 ms
14,324 KB
testcase_40 AC 23 ms
14,412 KB
testcase_41 AC 22 ms
14,308 KB
testcase_42 AC 22 ms
14,452 KB
testcase_43 AC 23 ms
14,316 KB
testcase_44 AC 22 ms
13,976 KB
testcase_45 AC 22 ms
13,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

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

int main() {
  int n;
  string s;
  cin >> n >> s;
  vector dp(n, vector<mint>(3));
  rep(i, n) {
    char c = s[i];
    if (c == 'L' || c == '.') {
      if (i == 0) {
        dp[i][0] = 1;
      }
      else {
        dp[i][0] = dp[i - 1][0] + dp[i - 1][2];
      }
    }
    if (c == 'R' || c == '.') {
      if (i == 0) {
        dp[i][1] = 1;
      }
      else {
        dp[i][1] = dp[i - 1][0] + dp[i - 1][1] + dp[i - 1][2];
      }
    }
    if (c == 'U' || c == '.') {
      if (i == 0) {
        dp[i][2] = 1;
      }
      else {
        dp[i][2] = dp[i - 1][0] + dp[i - 1][1] + dp[i - 1][2];
      }
    }
  }
  cout << (dp[n - 1][0] + dp[n - 1][1] + dp[n - 1][2]).val() << endl;
  return 0;
}
0