結果

問題 No.1646 Avoid Palindrome
ユーザー titiatitia
提出日時 2021-08-14 00:46:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,101 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 78,692 KB
最終ジャッジ日時 2024-10-04 02:10:52
合計ジャッジ時間 31,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,340 KB
testcase_01 AC 42 ms
62,428 KB
testcase_02 AC 41 ms
61,932 KB
testcase_03 AC 48 ms
63,972 KB
testcase_04 AC 1,012 ms
77,656 KB
testcase_05 AC 1,003 ms
78,296 KB
testcase_06 AC 964 ms
78,576 KB
testcase_07 AC 1,014 ms
77,728 KB
testcase_08 AC 865 ms
78,140 KB
testcase_09 AC 975 ms
77,524 KB
testcase_10 AC 1,013 ms
78,436 KB
testcase_11 AC 934 ms
78,308 KB
testcase_12 AC 1,037 ms
78,260 KB
testcase_13 AC 1,047 ms
77,872 KB
testcase_14 AC 784 ms
78,692 KB
testcase_15 AC 816 ms
78,412 KB
testcase_16 AC 783 ms
78,280 KB
testcase_17 AC 813 ms
78,312 KB
testcase_18 AC 802 ms
78,412 KB
testcase_19 AC 778 ms
78,220 KB
testcase_20 AC 789 ms
78,344 KB
testcase_21 AC 822 ms
78,312 KB
testcase_22 AC 797 ms
78,480 KB
testcase_23 AC 805 ms
78,092 KB
testcase_24 AC 828 ms
78,456 KB
testcase_25 AC 847 ms
78,456 KB
testcase_26 AC 818 ms
78,628 KB
testcase_27 AC 835 ms
78,368 KB
testcase_28 AC 840 ms
78,552 KB
testcase_29 AC 986 ms
78,360 KB
testcase_30 AC 969 ms
78,376 KB
testcase_31 AC 962 ms
78,512 KB
testcase_32 AC 984 ms
78,316 KB
testcase_33 AC 1,004 ms
78,448 KB
testcase_34 AC 1,073 ms
78,312 KB
testcase_35 AC 35 ms
52,276 KB
testcase_36 WA -
testcase_37 AC 35 ms
52,488 KB
testcase_38 AC 37 ms
52,244 KB
testcase_39 AC 34 ms
52,608 KB
testcase_40 AC 35 ms
53,708 KB
testcase_41 AC 36 ms
53,320 KB
testcase_42 AC 37 ms
52,704 KB
testcase_43 AC 1,015 ms
78,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N=int(input())
S=list(input().strip())

for i in range(N):
    S[i]=ord(S[i])-97

if N==1:
    print(1)
    exit()

DP=[0]*(26*26)

for i in range(26):
    for j in range(26):
        if i==j:
            continue

        if (i==S[0] or -34==S[0]) and (j==S[1] or -34==S[1]):
            DP[i*26+j]=1

#print(DP)

for stind in range(2,N):
    NDP1=[0]*(26*26)
    NDP2=[0]*(26*26)

    x=S[stind]

    for i in range(26):
        for j in range(26):
            kake=DP[i*26+j]

            if x==-34:
                NDP1[j*26]+=kake
                NDP1[j*26+i]-=kake
                if i!=25:
                    NDP1[j*26+i+1]+=kake
                NDP1[j*26+j]-=kake
                if j!=25:
                    NDP1[j*26+j+1]+=kake
                
            else:
                if i!=x and j!=x:
                    NDP2[j*26+x]+=kake

    for i in range(26):
        for j in range(1,26):
            NDP1[i*26+j]+=NDP1[i*26+j-1]

    DP=[0]*(26*26)

    for i in range(26*26):
        DP[i]=(NDP1[i]+NDP2[i])%mod

print(sum(DP)%mod)
0