結果

問題 No.2926 Botaoshi
ユーザー a1048576a1048576
提出日時 2024-10-12 15:09:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 171,668 KB
実行使用メモリ 14,416 KB
最終ジャッジ日時 2024-10-12 15:09:35
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge / 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,816 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 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 25 ms
14,272 KB
testcase_13 AC 24 ms
14,084 KB
testcase_14 AC 26 ms
14,020 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 19 ms
11,136 KB
testcase_17 AC 22 ms
13,016 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 15 ms
9,504 KB
testcase_20 AC 8 ms
6,820 KB
testcase_21 AC 13 ms
8,192 KB
testcase_22 AC 16 ms
9,344 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 16 ms
10,368 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 19 ms
11,852 KB
testcase_27 AC 13 ms
8,448 KB
testcase_28 AC 4 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 8 ms
6,820 KB
testcase_31 AC 6 ms
6,816 KB
testcase_32 AC 10 ms
6,912 KB
testcase_33 AC 18 ms
11,120 KB
testcase_34 AC 16 ms
9,984 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 26 ms
14,412 KB
testcase_37 AC 24 ms
14,324 KB
testcase_38 AC 24 ms
14,348 KB
testcase_39 AC 25 ms
14,416 KB
testcase_40 AC 24 ms
14,384 KB
testcase_41 AC 22 ms
14,348 KB
testcase_42 AC 22 ms
14,348 KB
testcase_43 AC 23 ms
14,348 KB
testcase_44 AC 21 ms
14,088 KB
testcase_45 AC 22 ms
13,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
	int n;
	string s;
	cin >> n >> s;
	int mod = 998244353;
	vector<vector<int>> dp(n+1,vector<int>(3,0));
	dp[0][2]++;
	for(int i = 0; i < n; i++) {
		for(int j = 0; j < 3; j++) {
			char e = 'L';
			if(j == 1) e = 'R';
			else if(j == 2) e = 'U';
			if(s[i] != '.' && s[i] != e) continue;
			for(int k = 0; k < 3; k++) {
				if(k == 1 && j == 0) continue;
				dp[i+1][j]+=dp[i][k];
				dp[i+1][j]%=mod;
			}
		}
	}
	cout << (dp[n][0]+dp[n][1]+dp[n][2])%mod << endl;
}
0