結果

問題 No.1646 Avoid Palindrome
ユーザー ntudantuda
提出日時 2021-08-15 16:23:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,325 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 445,304 KB
最終ジャッジ日時 2024-10-07 19:50:05
合計ジャッジ時間 39,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,444 KB
testcase_01 AC 39 ms
59,904 KB
testcase_02 AC 38 ms
59,392 KB
testcase_03 AC 47 ms
63,488 KB
testcase_04 AC 1,475 ms
423,348 KB
testcase_05 AC 1,462 ms
423,424 KB
testcase_06 AC 1,534 ms
411,520 KB
testcase_07 AC 1,456 ms
423,508 KB
testcase_08 AC 1,475 ms
426,664 KB
testcase_09 AC 1,448 ms
409,388 KB
testcase_10 AC 1,554 ms
417,408 KB
testcase_11 AC 1,412 ms
408,192 KB
testcase_12 AC 1,475 ms
422,400 KB
testcase_13 AC 1,467 ms
426,436 KB
testcase_14 AC 1,629 ms
417,024 KB
testcase_15 AC 1,648 ms
423,844 KB
testcase_16 AC 1,616 ms
414,720 KB
testcase_17 AC 1,673 ms
429,440 KB
testcase_18 AC 1,629 ms
419,968 KB
testcase_19 AC 1,623 ms
418,912 KB
testcase_20 AC 1,680 ms
421,248 KB
testcase_21 AC 1,668 ms
429,184 KB
testcase_22 AC 1,638 ms
417,812 KB
testcase_23 AC 1,678 ms
431,652 KB
testcase_24 AC 1,895 ms
445,304 KB
testcase_25 AC 1,891 ms
444,784 KB
testcase_26 AC 1,903 ms
444,776 KB
testcase_27 AC 1,886 ms
444,784 KB
testcase_28 AC 1,895 ms
444,676 KB
testcase_29 AC 1,402 ms
444,344 KB
testcase_30 AC 1,406 ms
444,464 KB
testcase_31 AC 1,511 ms
444,252 KB
testcase_32 AC 1,466 ms
444,008 KB
testcase_33 AC 1,423 ms
444,212 KB
testcase_34 AC 1,709 ms
444,528 KB
testcase_35 AC 36 ms
52,748 KB
testcase_36 AC 34 ms
53,604 KB
testcase_37 AC 33 ms
53,564 KB
testcase_38 AC 33 ms
54,192 KB
testcase_39 WA -
testcase_40 AC 33 ms
52,932 KB
testcase_41 AC 34 ms
54,332 KB
testcase_42 AC 33 ms
53,084 KB
testcase_43 AC 1,414 ms
444,240 KB
権限があれば一括ダウンロードができます

ソースコード

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] == "?":
        AS = [[0] * 27 for _ in range(26)]
        for k in range(26):
            for j in range(26):
                AS[k][j+1] = AS[k][j] + dp[i-1][j][k]
        for k in range(26):
            for l in range(26):
                if k != l:
                    temp = AS[k][l] + AS[k][-1] - AS[k][l+1]
                    dp[i][k][l] = temp % 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