結果

問題 No.1646 Avoid Palindrome
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-08-29 02:12:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,135 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 431,184 KB
最終ジャッジ日時 2024-11-22 01:38:53
合計ジャッジ時間 57,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,572 KB
testcase_01 AC 55 ms
66,176 KB
testcase_02 AC 53 ms
64,128 KB
testcase_03 AC 56 ms
66,816 KB
testcase_04 AC 1,953 ms
410,144 KB
testcase_05 AC 1,732 ms
410,000 KB
testcase_06 AC 1,800 ms
398,484 KB
testcase_07 AC 1,872 ms
410,080 KB
testcase_08 AC 1,896 ms
413,172 KB
testcase_09 AC 1,791 ms
397,052 KB
testcase_10 AC 1,779 ms
404,816 KB
testcase_11 AC 1,789 ms
395,636 KB
testcase_12 AC 1,759 ms
409,580 KB
testcase_13 AC 1,769 ms
413,712 KB
testcase_14 AC 1,524 ms
403,632 KB
testcase_15 AC 1,465 ms
409,724 KB
testcase_16 AC 1,326 ms
401,740 KB
testcase_17 AC 1,564 ms
415,860 KB
testcase_18 AC 1,594 ms
406,492 KB
testcase_19 AC 1,733 ms
404,888 KB
testcase_20 AC 1,368 ms
407,584 KB
testcase_21 AC 1,398 ms
415,332 KB
testcase_22 AC 1,547 ms
403,520 KB
testcase_23 AC 1,425 ms
417,772 KB
testcase_24 AC 1,655 ms
430,160 KB
testcase_25 AC 1,638 ms
430,204 KB
testcase_26 AC 1,681 ms
430,164 KB
testcase_27 AC 1,681 ms
430,360 KB
testcase_28 AC 1,693 ms
430,216 KB
testcase_29 AC 1,986 ms
430,440 KB
testcase_30 AC 1,826 ms
430,720 KB
testcase_31 AC 1,853 ms
430,728 KB
testcase_32 AC 1,885 ms
430,424 KB
testcase_33 AC 2,162 ms
431,184 KB
testcase_34 AC 1,628 ms
430,212 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 41 ms
57,984 KB
testcase_38 AC 38 ms
52,992 KB
testcase_39 AC 40 ms
52,736 KB
testcase_40 AC 38 ms
52,864 KB
testcase_41 AC 45 ms
60,928 KB
testcase_42 AC 47 ms
61,440 KB
testcase_43 AC 2,177 ms
430,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n=int(input())
s=list(input())+["#"]
for i in range(n):
    s[i]=ord(s[i])-97

def _(i,j,k):
    return (j*27+k)*(n+2)+i

dp=[0]*(n+3)*900

if s[0]==s[1]==-34:
    for i in range(26):
        for j in range(26):
            if i!=j:dp[_(1,i,j)]+=1
elif s[0]==-34:
    for i in range(26):
        if i!=s[1]:dp[_(1,i,s[1])]+=1
elif s[1]==-34:
    for i in range(26):
        if i!=s[0]:dp[_(1,s[0],i)]+=1
else:
    if s[0]!=s[1]:dp[_(1,s[0],s[1])]+=1

sdp=[0]*30

for i in range(1,n):
    for j in range(26):
        for k in range(26):
            if j==k:continue
            if i>=2 and s[i]==-34:
                dp[_(i,j,k)]+=sdp[j]-dp[_(i-1,k,j)]
                dp[_(i,j,k)]%=mod
            if i==n-1:continue
            if s[i+1]!=-34:
                if s[i+1]==j or s[i+1]==k:continue
                dp[_(i+1,k,s[i+1])]+=dp[_(i,j,k)]
                dp[_(i + 1, k, s[i + 1])]%=mod
            else:
                pass
    for j in range(26):
        sdp[j]=sum(dp[_(i,k,j)] for k in range(26))%mod


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

0