結果

問題 No.1646 Avoid Palindrome
ユーザー AEnAEn
提出日時 2022-12-10 15:23:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 996 ms / 3,000 ms
コード長 1,260 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 77,136 KB
最終ジャッジ日時 2024-10-14 23:41:33
合計ジャッジ時間 21,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,520 KB
testcase_01 AC 48 ms
60,672 KB
testcase_02 AC 46 ms
59,648 KB
testcase_03 AC 51 ms
62,336 KB
testcase_04 AC 505 ms
76,424 KB
testcase_05 AC 502 ms
76,300 KB
testcase_06 AC 631 ms
76,544 KB
testcase_07 AC 498 ms
76,544 KB
testcase_08 AC 504 ms
76,496 KB
testcase_09 AC 493 ms
76,288 KB
testcase_10 AC 492 ms
76,556 KB
testcase_11 AC 505 ms
76,824 KB
testcase_12 AC 493 ms
76,176 KB
testcase_13 AC 499 ms
76,416 KB
testcase_14 AC 674 ms
76,800 KB
testcase_15 AC 694 ms
76,800 KB
testcase_16 AC 698 ms
76,672 KB
testcase_17 AC 714 ms
76,928 KB
testcase_18 AC 685 ms
77,056 KB
testcase_19 AC 675 ms
77,020 KB
testcase_20 AC 685 ms
77,108 KB
testcase_21 AC 696 ms
76,672 KB
testcase_22 AC 673 ms
76,800 KB
testcase_23 AC 676 ms
76,672 KB
testcase_24 AC 706 ms
76,672 KB
testcase_25 AC 714 ms
76,800 KB
testcase_26 AC 699 ms
76,800 KB
testcase_27 AC 716 ms
76,672 KB
testcase_28 AC 706 ms
77,136 KB
testcase_29 AC 414 ms
76,288 KB
testcase_30 AC 456 ms
76,800 KB
testcase_31 AC 456 ms
76,288 KB
testcase_32 AC 457 ms
76,616 KB
testcase_33 AC 410 ms
76,544 KB
testcase_34 AC 996 ms
76,544 KB
testcase_35 AC 38 ms
51,840 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 38 ms
52,608 KB
testcase_38 AC 39 ms
52,352 KB
testcase_39 AC 38 ms
52,736 KB
testcase_40 AC 37 ms
52,352 KB
testcase_41 AC 37 ms
52,352 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 417 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
if N==1:
    print(26 if S[0]=='?' else 1)
    exit()

def f(s):
    return ord(s)-97
mod = 998244353
dp = [[0]*26 for _ in range(26)]
if S[0]=='?' and S[1]=='?':
    for i in range(26):
        for j in range(26):
            if i==j:continue
            dp[i][j] = 1
elif S[0]=='?':
    s = f(S[1])
    for i in range(26):
        if i==s:continue
        dp[i][s] = 1
elif S[1]=='?':
    s = f(S[0])
    for i in range(26):
        if i==s:continue
        dp[s][i] = 1
else:
    s1, s2 = f(S[0]), f(S[1])
    dp[s1][s2] = 1

for i in range(2,N):
    ndp = [[0]*26 for _ in range(26)]
    sm = [0]*26
    for j in range(26):
        for k in range(26):
            if j==k:continue
            sm[k] += dp[j][k]
            sm[k] %= mod
    if S[i]=='?':
        for j in range(26):
            for k in range(26):
                if j==k:continue
                ndp[j][k] += sm[j]-dp[k][j]
                ndp[j][k] %= mod
    else:
        s = f(S[i])
        for j in range(26):
            ndp[j][s] += sm[j]-dp[s][j]
            ndp[j][s] %= mod
    dp = ndp
res = 0
for i in range(26):
    for j in range(26):
        if i==j:continue
        res += dp[i][j]
        res %= mod
print(res)
            
        
        

0