結果

問題 No.1646 Avoid Palindrome
ユーザー H20H20
提出日時 2021-08-14 02:04:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 444,324 KB
最終ジャッジ日時 2024-10-04 05:25:01
合計ジャッジ時間 56,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,312 KB
testcase_01 AC 50 ms
60,160 KB
testcase_02 AC 47 ms
59,136 KB
testcase_03 WA -
testcase_04 AC 1,614 ms
422,656 KB
testcase_05 AC 1,461 ms
422,892 KB
testcase_06 AC 1,654 ms
410,624 KB
testcase_07 WA -
testcase_08 AC 1,604 ms
426,316 KB
testcase_09 WA -
testcase_10 AC 1,561 ms
417,068 KB
testcase_11 AC 1,528 ms
407,332 KB
testcase_12 WA -
testcase_13 AC 1,465 ms
426,236 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,814 ms
430,228 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,518 ms
444,324 KB
testcase_30 AC 1,505 ms
443,944 KB
testcase_31 AC 1,892 ms
443,868 KB
testcase_32 AC 1,567 ms
443,748 KB
testcase_33 AC 1,514 ms
444,044 KB
testcase_34 WA -
testcase_35 AC 38 ms
52,912 KB
testcase_36 AC 40 ms
52,580 KB
testcase_37 WA -
testcase_38 AC 41 ms
53,076 KB
testcase_39 AC 45 ms
59,108 KB
testcase_40 AC 47 ms
59,444 KB
testcase_41 AC 47 ms
59,860 KB
testcase_42 AC 47 ms
59,756 KB
testcase_43 AC 1,522 ms
443,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
mod = 998244353
DP = [[[0] * 26 for _ in range(26)] for _ in range(N+1)]
DP[0][0][0]=1
for n in range(N):
    if S[n]=='?':
        TEMP = [0]*26
        for i in range(26):
            for j in range(26):
                TEMP[j]+=DP[n][j][i]
        for j in range(26):
            for k in range(26):
                if j!=k:
                    DP[n+1][k][j]=(TEMP[j]-DP[n][j][k])%mod
                if j==0 and k==0 and n==0:
                    DP[1][0][0]=1

    else:
        k = ord(S[n])-97
        for i in range(26):
            for j in range(26):
                if (i!=k or n<=1) and (j!=k or n==0):
                    DP[n+1][k][j]=(DP[n+1][k][j]+DP[n][j][i])%mod                    
ans = 0
for i in range(26):
    for j in range(26):
        ans += DP[N][i][j]
print(ans%mod)
0