結果

問題 No.1646 Avoid Palindrome
ユーザー ntudantuda
提出日時 2021-08-15 16:28:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,111 ms / 3,000 ms
コード長 1,351 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 444,904 KB
最終ジャッジ日時 2024-11-08 16:23:25
合計ジャッジ時間 56,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 48 ms
60,032 KB
testcase_02 AC 46 ms
59,392 KB
testcase_03 AC 56 ms
63,872 KB
testcase_04 AC 1,572 ms
423,168 KB
testcase_05 AC 1,539 ms
423,424 KB
testcase_06 AC 1,624 ms
411,264 KB
testcase_07 AC 1,538 ms
423,168 KB
testcase_08 AC 1,591 ms
427,264 KB
testcase_09 AC 1,576 ms
409,216 KB
testcase_10 AC 1,641 ms
417,536 KB
testcase_11 AC 1,495 ms
408,064 KB
testcase_12 AC 1,561 ms
422,784 KB
testcase_13 AC 1,555 ms
426,496 KB
testcase_14 AC 1,705 ms
416,896 KB
testcase_15 AC 1,714 ms
424,064 KB
testcase_16 AC 1,695 ms
414,976 KB
testcase_17 AC 1,774 ms
429,696 KB
testcase_18 AC 1,728 ms
420,480 KB
testcase_19 AC 1,727 ms
418,688 KB
testcase_20 AC 1,735 ms
421,376 KB
testcase_21 AC 1,777 ms
429,056 KB
testcase_22 AC 1,733 ms
417,536 KB
testcase_23 AC 1,808 ms
431,232 KB
testcase_24 AC 2,111 ms
444,800 KB
testcase_25 AC 2,011 ms
444,904 KB
testcase_26 AC 2,031 ms
444,524 KB
testcase_27 AC 2,039 ms
444,672 KB
testcase_28 AC 2,006 ms
444,544 KB
testcase_29 AC 1,506 ms
444,032 KB
testcase_30 AC 1,515 ms
444,672 KB
testcase_31 AC 1,586 ms
444,288 KB
testcase_32 AC 1,553 ms
444,288 KB
testcase_33 AC 1,517 ms
444,032 KB
testcase_34 AC 1,788 ms
444,672 KB
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 40 ms
52,224 KB
testcase_37 AC 40 ms
52,352 KB
testcase_38 AC 40 ms
52,352 KB
testcase_39 AC 39 ms
52,352 KB
testcase_40 AC 41 ms
52,480 KB
testcase_41 AC 41 ms
52,608 KB
testcase_42 AC 41 ms
52,480 KB
testcase_43 AC 1,532 ms
444,032 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:
    if S[0] != S[1]: 
        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