結果

問題 No.1646 Avoid Palindrome
ユーザー ntudantuda
提出日時 2021-08-15 15:24:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,187 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 428,544 KB
最終ジャッジ日時 2024-04-16 18:04:19
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,432 KB
testcase_01 AC 51 ms
59,904 KB
testcase_02 AC 49 ms
59,392 KB
testcase_03 AC 64 ms
62,720 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
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 sys
N = int(input())
S = input()
mod = 998244353
dp = [[[0] * 26 for i in range(26)] for j in range(N)]

def code(s):
    return ord(s) - 97

if N == 1:
    if S[0] == "?":
        print(26)
        sys.exit()
    else:
        print(1)
        sys.exit()

if S[0:2] == "??":
    for i in range(26):
        for j in range(26):
            if i != j:
                dp[1][i][j] = 1

elif S[0] == "?":
    j = code(S[1])
    for i in range(26):
        if i != j:
            dp[1][i][j] = 1

elif S[1] == "?":
    j = code(S[0])
    for i in range(26):
        if i != j:
            dp[1][j][i] = 1

else:
    dp[1][code(S[0])][code(S[1])] = 1

for i in range(2,N):
    if S[i] == "?":
        for j in range(26):
            for k in range(26):
                for l in range(26):
                    if j != l and k != l:
                        dp[i][k][l] = (dp[i][k][l] + dp[i-1][j][k]) % mod

    else:
        x = code(S[i])
        for j in range(26):
            for k in range(26):
                if j != x and k != x:
                    dp[i][k][x] = (dp[i][k][x] + dp[i-1][j][k]) % mod

ans = 0
for i in range(26):
    ans = (ans + sum(dp[-1][i])) % mod
print(ans)
0