結果

問題 No.2926 Botaoshi
ユーザー yel_owyel_ow
提出日時 2024-11-24 04:17:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 5,574 ms
コンパイル使用メモリ 311,792 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-11-24 04:17:11
合計ジャッジ時間 7,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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,080 KB
testcase_14 AC 24 ms
14,208 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 19 ms
11,008 KB
testcase_17 AC 29 ms
12,928 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 17 ms
9,600 KB
testcase_20 AC 8 ms
6,016 KB
testcase_21 AC 13 ms
8,192 KB
testcase_22 AC 15 ms
9,344 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 16 ms
10,368 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 19 ms
11,904 KB
testcase_27 AC 13 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,144 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 10 ms
6,912 KB
testcase_33 AC 19 ms
11,008 KB
testcase_34 AC 17 ms
9,856 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 24 ms
14,336 KB
testcase_37 AC 24 ms
14,464 KB
testcase_38 AC 24 ms
14,336 KB
testcase_39 AC 24 ms
14,464 KB
testcase_40 AC 24 ms
14,336 KB
testcase_41 AC 25 ms
14,464 KB
testcase_42 AC 25 ms
14,336 KB
testcase_43 AC 25 ms
14,336 KB
testcase_44 AC 23 ms
14,080 KB
testcase_45 AC 24 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <monsterenergy>
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;

int main()
{
    int N; cin >> N;
    string S; cin >> S;
    vector<vector<mint>> DP(N+1,vector<mint>(4));
    DP[0][0] = 1;
    for(int i = 0; i < N; i++)
    {
        if(S[i] == 'L' || S[i] == '.') DP[i+1][1] = DP[i][0]+DP[i][1]+DP[i][3];
        if(S[i] == 'R' || S[i] == '.') DP[i+1][2] = DP[i][0]+DP[i][1]+DP[i][2]+DP[i][3];
        if(S[i] == 'U' || S[i] == '.') DP[i+1][3] = DP[i][0]+DP[i][1]+DP[i][2]+DP[i][3];
    }
    cout << (DP[N][1]+DP[N][2]+DP[N][3]).val() << endl;
    return 0;
}
0