結果

問題 No.1646 Avoid Palindrome
ユーザー H20H20
提出日時 2021-08-14 02:16:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,946 ms / 3,000 ms
コード長 908 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 444,288 KB
最終ジャッジ日時 2024-11-08 16:11:18
合計ジャッジ時間 57,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,568 KB
testcase_01 AC 48 ms
60,544 KB
testcase_02 AC 45 ms
59,264 KB
testcase_03 AC 54 ms
62,720 KB
testcase_04 AC 1,602 ms
422,656 KB
testcase_05 AC 1,407 ms
423,168 KB
testcase_06 AC 1,579 ms
410,752 KB
testcase_07 AC 1,528 ms
422,912 KB
testcase_08 AC 1,537 ms
426,368 KB
testcase_09 AC 1,578 ms
408,832 KB
testcase_10 AC 1,519 ms
417,152 KB
testcase_11 AC 1,468 ms
407,552 KB
testcase_12 AC 1,564 ms
421,888 KB
testcase_13 AC 1,424 ms
426,496 KB
testcase_14 AC 1,793 ms
415,872 KB
testcase_15 AC 1,758 ms
422,784 KB
testcase_16 AC 1,682 ms
413,824 KB
testcase_17 AC 1,760 ms
428,800 KB
testcase_18 AC 1,722 ms
419,456 KB
testcase_19 AC 1,748 ms
417,664 KB
testcase_20 AC 1,761 ms
420,608 KB
testcase_21 AC 1,828 ms
428,416 KB
testcase_22 AC 1,763 ms
416,384 KB
testcase_23 AC 1,859 ms
430,208 KB
testcase_24 AC 1,945 ms
443,776 KB
testcase_25 AC 1,928 ms
443,648 KB
testcase_26 AC 1,946 ms
443,904 KB
testcase_27 AC 1,912 ms
443,648 KB
testcase_28 AC 1,915 ms
444,032 KB
testcase_29 AC 1,548 ms
443,776 KB
testcase_30 AC 1,570 ms
444,288 KB
testcase_31 AC 1,631 ms
444,032 KB
testcase_32 AC 1,587 ms
443,904 KB
testcase_33 AC 1,546 ms
444,288 KB
testcase_34 AC 1,906 ms
443,776 KB
testcase_35 AC 45 ms
52,480 KB
testcase_36 AC 46 ms
52,480 KB
testcase_37 AC 54 ms
60,672 KB
testcase_38 AC 46 ms
52,608 KB
testcase_39 AC 50 ms
59,392 KB
testcase_40 AC 50 ms
59,648 KB
testcase_41 AC 51 ms
59,904 KB
testcase_42 AC 52 ms
59,648 KB
testcase_43 AC 1,545 ms
443,776 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
                if j!=k and k==0 and n==1:
                    DP[n+1][k][j]=TEMP[j]

    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