結果

問題 No.2926 Botaoshi
ユーザー viral8viral8
提出日時 2024-10-15 22:21:24
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,158 bytes
コンパイル時間 3,419 ms
コンパイル使用メモリ 77,748 KB
実行使用メモリ 48,120 KB
最終ジャッジ日時 2024-10-15 22:22:24
合計ジャッジ時間 13,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,080 KB
testcase_01 AC 118 ms
41,376 KB
testcase_02 AC 120 ms
41,224 KB
testcase_03 AC 115 ms
41,132 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 223 ms
47,184 KB
testcase_13 AC 219 ms
46,856 KB
testcase_14 AC 226 ms
48,120 KB
testcase_15 AC 133 ms
41,152 KB
testcase_16 AC 199 ms
45,544 KB
testcase_17 AC 209 ms
45,932 KB
testcase_18 AC 147 ms
42,000 KB
testcase_19 AC 203 ms
43,880 KB
testcase_20 AC 183 ms
42,848 KB
testcase_21 AC 243 ms
45,580 KB
testcase_22 AC 216 ms
45,640 KB
testcase_23 AC 141 ms
41,900 KB
testcase_24 AC 217 ms
46,312 KB
testcase_25 AC 149 ms
42,640 KB
testcase_26 AC 220 ms
46,344 KB
testcase_27 AC 235 ms
45,940 KB
testcase_28 AC 143 ms
42,472 KB
testcase_29 AC 138 ms
41,708 KB
testcase_30 AC 176 ms
44,084 KB
testcase_31 AC 144 ms
42,076 KB
testcase_32 AC 184 ms
43,456 KB
testcase_33 AC 213 ms
46,328 KB
testcase_34 AC 235 ms
45,152 KB
testcase_35 AC 141 ms
41,348 KB
testcase_36 AC 234 ms
47,020 KB
testcase_37 AC 241 ms
47,004 KB
testcase_38 AC 239 ms
47,076 KB
testcase_39 AC 242 ms
47,068 KB
testcase_40 AC 225 ms
46,932 KB
testcase_41 AC 194 ms
44,096 KB
testcase_42 AC 205 ms
44,688 KB
testcase_43 AC 215 ms
44,224 KB
testcase_44 AC 209 ms
43,772 KB
testcase_45 AC 234 ms
44,280 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[N];
		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