結果

問題 No.2926 Botaoshi
ユーザー viral8viral8
提出日時 2024-10-15 22:23:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,158 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 57,180 KB
最終ジャッジ日時 2024-10-15 22:24:29
合計ジャッジ時間 13,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,244 KB
testcase_01 AC 134 ms
53,884 KB
testcase_02 AC 134 ms
53,876 KB
testcase_03 AC 139 ms
54,116 KB
testcase_04 AC 135 ms
53,876 KB
testcase_05 AC 141 ms
54,136 KB
testcase_06 AC 135 ms
54,024 KB
testcase_07 AC 135 ms
53,768 KB
testcase_08 AC 135 ms
54,052 KB
testcase_09 AC 135 ms
53,948 KB
testcase_10 AC 134 ms
54,068 KB
testcase_11 AC 138 ms
53,808 KB
testcase_12 AC 261 ms
57,040 KB
testcase_13 AC 254 ms
56,936 KB
testcase_14 AC 263 ms
56,836 KB
testcase_15 AC 140 ms
53,824 KB
testcase_16 AC 231 ms
56,396 KB
testcase_17 AC 236 ms
56,336 KB
testcase_18 AC 166 ms
54,052 KB
testcase_19 AC 220 ms
56,220 KB
testcase_20 AC 187 ms
54,168 KB
testcase_21 AC 234 ms
57,024 KB
testcase_22 AC 241 ms
57,124 KB
testcase_23 AC 159 ms
54,188 KB
testcase_24 AC 244 ms
56,888 KB
testcase_25 AC 173 ms
56,372 KB
testcase_26 AC 257 ms
56,992 KB
testcase_27 AC 248 ms
56,976 KB
testcase_28 AC 188 ms
54,220 KB
testcase_29 AC 161 ms
54,152 KB
testcase_30 AC 193 ms
56,176 KB
testcase_31 AC 168 ms
53,916 KB
testcase_32 AC 207 ms
56,252 KB
testcase_33 AC 230 ms
57,108 KB
testcase_34 AC 260 ms
56,436 KB
testcase_35 AC 150 ms
54,000 KB
testcase_36 AC 259 ms
57,116 KB
testcase_37 AC 262 ms
57,152 KB
testcase_38 AC 264 ms
56,804 KB
testcase_39 AC 262 ms
57,180 KB
testcase_40 AC 254 ms
57,164 KB
testcase_41 AC 236 ms
56,512 KB
testcase_42 AC 234 ms
56,308 KB
testcase_43 AC 239 ms
56,508 KB
testcase_44 AC 236 ms
56,576 KB
testcase_45 AC 236 ms
56,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	private static final int MOD = 998244353;
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] dp = new int[3];
		dp[2] = 1;
		String S = sc.next();
		for(char c:S.toCharArray()){
			if(c=='L'){
				dp[0] += dp[2];
				if(dp[0]>=MOD)
					dp[0] -= MOD;
				dp[1] = dp[2] = 0;
			}
			if(c=='R'){
				dp[1] += dp[0];
				if(dp[1]>=MOD)
					dp[1] -= MOD;
				dp[1] += dp[2];
				if(dp[1]>=MOD)
					dp[1] -= MOD;
				dp[0] = dp[2] = 0;
			}
			if(c=='U'){
				dp[2] += dp[0];
				if(dp[2]>=MOD)
					dp[2] -= MOD;
				dp[2] += dp[1];
				if(dp[2]>=MOD)
					dp[2] -= MOD;
				dp[0] = dp[1] = 0;
			}
			if(c=='.'){
				int[] next = new int[3];
				next[0] = dp[0]+dp[2];
				if(next[0]>=MOD)
					next[0] -= MOD;
				next[1] = dp[0]+dp[1];
				if(next[1]>=MOD)
					next[1] -= MOD;
				next[1] += dp[2];
				if(next[1]>=MOD)
					next[1] -= MOD;
				next[2] = dp[0]+dp[1];
				if(next[2]>=MOD)
					next[2] -= MOD;
				next[2] += dp[2];
				if(next[2]>=MOD)
					next[2] -= MOD;
				dp = next;
			}
		}
		System.out.println(((dp[0]+dp[1])%MOD+dp[2])%MOD);
	}
}
0