結果

問題 No.1646 Avoid Palindrome
ユーザー convexineqconvexineq
提出日時 2021-08-13 23:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,070 ms / 3,000 ms
コード長 977 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-11-08 16:09:01
合計ジャッジ時間 25,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 49 ms
59,904 KB
testcase_02 AC 47 ms
59,264 KB
testcase_03 AC 55 ms
62,464 KB
testcase_04 AC 603 ms
77,824 KB
testcase_05 AC 606 ms
77,696 KB
testcase_06 AC 734 ms
78,080 KB
testcase_07 AC 598 ms
77,824 KB
testcase_08 AC 631 ms
77,412 KB
testcase_09 AC 719 ms
77,312 KB
testcase_10 AC 760 ms
77,568 KB
testcase_11 AC 715 ms
77,440 KB
testcase_12 AC 746 ms
77,440 KB
testcase_13 AC 614 ms
77,568 KB
testcase_14 AC 766 ms
77,696 KB
testcase_15 AC 787 ms
77,824 KB
testcase_16 AC 783 ms
77,568 KB
testcase_17 AC 779 ms
77,696 KB
testcase_18 AC 751 ms
77,456 KB
testcase_19 AC 760 ms
77,568 KB
testcase_20 AC 773 ms
77,696 KB
testcase_21 AC 790 ms
77,952 KB
testcase_22 AC 764 ms
77,568 KB
testcase_23 AC 768 ms
77,484 KB
testcase_24 AC 816 ms
77,696 KB
testcase_25 AC 809 ms
77,824 KB
testcase_26 AC 793 ms
77,824 KB
testcase_27 AC 813 ms
77,568 KB
testcase_28 AC 802 ms
77,696 KB
testcase_29 AC 540 ms
77,568 KB
testcase_30 AC 541 ms
77,628 KB
testcase_31 AC 698 ms
77,652 KB
testcase_32 AC 577 ms
77,312 KB
testcase_33 AC 511 ms
77,372 KB
testcase_34 AC 1,070 ms
77,440 KB
testcase_35 AC 42 ms
52,096 KB
testcase_36 AC 41 ms
51,840 KB
testcase_37 AC 41 ms
52,352 KB
testcase_38 AC 42 ms
52,096 KB
testcase_39 AC 41 ms
52,352 KB
testcase_40 AC 41 ms
52,352 KB
testcase_41 AC 42 ms
52,096 KB
testcase_42 AC 42 ms
52,352 KB
testcase_43 AC 522 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
s = [ord(i)-97 for i in input()]
if len(s)==1:
    print(26 if s[0] < 0 else 1)
    exit()
M = 26
dp = [[0]*M for _ in range(M)]
for i in range(M):
    for j in range(M):
        if i != j and (s[0] == i or s[0] < 0) and (s[1] == j or s[1] < 0):
            dp[i][j] += 1

for v in s[2:]:
    ndp = [[0]*M for _ in range(M)]
    if v < 0:
        c = [0]*M
        for i in range(M):
            for j in range(M):
                if i==j: continue
                c[j] += dp[i][j]
                ndp[j][i] -= dp[i][j]
        for i in range(M):
            for j in range(M):
                if i==j: continue
                ndp[i][j] += c[i]
                ndp[i][j] %= MOD
    else:
        for i in range(M):
            if i == v: continue
            for j in range(M):
                if j == v: continue
                ndp[j][v] += dp[i][j]
                ndp[j][v] %= MOD
    dp = ndp        

print(sum(sum(di) for di in dp)%MOD)
0