結果

問題 No.1646 Avoid Palindrome
ユーザー ks2mks2m
提出日時 2021-08-13 22:12:39
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,568 bytes
コンパイル時間 6,545 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 368,400 KB
最終ジャッジ日時 2024-10-03 19:28:29
合計ジャッジ時間 25,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
60,896 KB
testcase_01 AC 117 ms
52,592 KB
testcase_02 AC 133 ms
53,868 KB
testcase_03 AC 162 ms
54,260 KB
testcase_04 AC 1,611 ms
361,804 KB
testcase_05 AC 1,971 ms
361,316 KB
testcase_06 AC 1,542 ms
361,396 KB
testcase_07 AC 1,961 ms
361,568 KB
testcase_08 AC 1,761 ms
362,040 KB
testcase_09 AC 1,831 ms
361,100 KB
testcase_10 AC 1,828 ms
361,764 KB
testcase_11 AC 1,908 ms
362,076 KB
testcase_12 AC 1,923 ms
361,596 KB
testcase_13 AC 1,511 ms
361,476 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] s = sc.next().toCharArray();
		sc.close();

		if (n == 1) {
			if (s[0] == '?') {
				System.out.println(26);
			} else {
				System.out.println(1);
			}
			return;
		}

		int mod = 998244353;
		long[][][] dp = new long[n][26][26];
		for (int j1 = 0; j1 < 26; j1++) {
			if (s[0] != '?' && s[0] - 'a' != j1) {
				continue;
			}
			for (int j2 = 0; j2 < 26; j2++) {
				if (s[1] != '?' && s[1] - 'a' != j2) {
					continue;
				}
				if (j1 == j2) {
					continue;
				}
				dp[1][j1][j2] = 1;
			}
		}
		for (int i = 2; i < n; i++) {
			for (int c = 0; c < 26; c++) {
				if (s[i] != '?' && s[i] - 'a' != c) {
					continue;
				}
				for (int j1 = 0; j1 < 26; j1++) {
					if (j1 == c) {
						continue;
					}
					if (s[i - 1] != '?' && s[i - 1] - 'a' != j1) {
						continue;
					}
					for (int j2 = 0; j2 < 26; j2++) {
						if (j2 == c) {
							continue;
						}
						if (s[i - 2] != '?' && s[i - 2] - 'a' != j2) {
							continue;
						}
						dp[i][j1][c] += dp[i - 1][j2][j1];
					}
				}
			}
			for (int j1 = 0; j1 < 26; j1++) {
				for (int j2 = 0; j2 < 26; j2++) {
					dp[i][j1][j2] %= mod;
				}
			}
		}

		long ans = 0;
		for (int j1 = 0; j1 < 26; j1++) {
			if (s[n - 1] == '?') {
				for (int j2 = 0; j2 < 26; j2++) {
					ans += dp[n - 1][j1][j2];
				}
			} else {
				ans += dp[n - 1][j1][s[n - 1] - 'a'];
			}
		}
		ans %= mod;
		System.out.println(ans);
	}
}
0