結果

問題 No.1646 Avoid Palindrome
ユーザー MitarushiMitarushi
提出日時 2021-07-29 12:57:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,310 ms / 3,000 ms
コード長 602 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,956 KB
最終ジャッジ日時 2024-11-08 14:46:28
合計ジャッジ時間 41,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,440 KB
testcase_01 AC 55 ms
61,184 KB
testcase_02 AC 50 ms
59,136 KB
testcase_03 AC 68 ms
65,792 KB
testcase_04 AC 1,254 ms
78,732 KB
testcase_05 AC 1,244 ms
79,124 KB
testcase_06 AC 1,171 ms
79,004 KB
testcase_07 AC 1,210 ms
78,680 KB
testcase_08 AC 1,232 ms
79,848 KB
testcase_09 AC 1,193 ms
78,820 KB
testcase_10 AC 1,189 ms
78,720 KB
testcase_11 AC 1,212 ms
79,848 KB
testcase_12 AC 1,209 ms
78,696 KB
testcase_13 AC 1,259 ms
79,484 KB
testcase_14 AC 1,247 ms
79,708 KB
testcase_15 AC 1,292 ms
79,956 KB
testcase_16 AC 1,234 ms
79,188 KB
testcase_17 AC 1,300 ms
79,840 KB
testcase_18 AC 1,245 ms
79,320 KB
testcase_19 AC 1,239 ms
79,460 KB
testcase_20 AC 1,260 ms
79,600 KB
testcase_21 AC 1,257 ms
79,068 KB
testcase_22 AC 1,232 ms
79,712 KB
testcase_23 AC 1,243 ms
78,704 KB
testcase_24 AC 1,310 ms
79,708 KB
testcase_25 AC 1,288 ms
79,568 KB
testcase_26 AC 1,303 ms
78,788 KB
testcase_27 AC 1,293 ms
79,472 KB
testcase_28 AC 1,287 ms
79,832 KB
testcase_29 AC 1,058 ms
78,504 KB
testcase_30 AC 998 ms
78,508 KB
testcase_31 AC 1,023 ms
78,764 KB
testcase_32 AC 1,041 ms
78,444 KB
testcase_33 AC 1,040 ms
78,776 KB
testcase_34 AC 1,196 ms
78,044 KB
testcase_35 AC 49 ms
58,624 KB
testcase_36 AC 45 ms
57,216 KB
testcase_37 AC 49 ms
59,136 KB
testcase_38 AC 48 ms
58,368 KB
testcase_39 AC 49 ms
58,624 KB
testcase_40 AC 48 ms
58,880 KB
testcase_41 AC 50 ms
58,880 KB
testcase_42 AC 49 ms
59,008 KB
testcase_43 AC 1,026 ms
78,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

mod = 998244353
dp = [[0] * 27 for _ in range(27)]
dp[-1][-1] = 1

for i in s:

    if i == "?":
        i_sum = [sum(dp[j][i] for j in range(27)) for i in range(27)]
        dp2 = [[0 if i == j or j == 26 else (i_sum[i] - dp[j][i]) % mod for j in range(27)]for i in range(27)]

    else:
        char = ord(i) - ord("a")

        dp2 = [[0] * 27 for _ in range(27)]
        for j in range(27):
            if j == char:
                continue

            dp2[j][char] = sum(dp[i][j] for i in range(27) if i != char) % mod

    dp = dp2

print(sum(map(sum, dp)) % mod)
0