結果

問題 No.1646 Avoid Palindrome
ユーザー MitarushiMitarushi
提出日時 2021-07-29 12:51:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,592 ms / 3,000 ms
コード長 653 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,844 KB
最終ジャッジ日時 2024-11-08 14:50:07
合計ジャッジ時間 43,109 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,928 KB
testcase_01 AC 53 ms
61,312 KB
testcase_02 AC 48 ms
58,880 KB
testcase_03 AC 68 ms
66,560 KB
testcase_04 AC 1,056 ms
79,532 KB
testcase_05 AC 1,096 ms
80,676 KB
testcase_06 AC 1,002 ms
79,572 KB
testcase_07 AC 1,037 ms
79,752 KB
testcase_08 AC 1,125 ms
81,392 KB
testcase_09 AC 1,061 ms
80,316 KB
testcase_10 AC 1,050 ms
79,864 KB
testcase_11 AC 1,014 ms
79,436 KB
testcase_12 AC 1,066 ms
79,600 KB
testcase_13 AC 1,141 ms
81,172 KB
testcase_14 AC 1,438 ms
81,692 KB
testcase_15 AC 1,473 ms
82,844 KB
testcase_16 AC 1,474 ms
81,556 KB
testcase_17 AC 1,533 ms
82,208 KB
testcase_18 AC 1,503 ms
81,560 KB
testcase_19 AC 1,479 ms
82,712 KB
testcase_20 AC 1,466 ms
82,204 KB
testcase_21 AC 1,530 ms
82,460 KB
testcase_22 AC 1,495 ms
81,816 KB
testcase_23 AC 1,491 ms
82,312 KB
testcase_24 AC 1,587 ms
82,840 KB
testcase_25 AC 1,592 ms
82,460 KB
testcase_26 AC 1,546 ms
82,456 KB
testcase_27 AC 1,581 ms
82,720 KB
testcase_28 AC 1,586 ms
82,076 KB
testcase_29 AC 898 ms
79,528 KB
testcase_30 AC 1,066 ms
79,612 KB
testcase_31 AC 878 ms
78,928 KB
testcase_32 AC 861 ms
78,848 KB
testcase_33 AC 890 ms
79,532 KB
testcase_34 AC 1,431 ms
80,412 KB
testcase_35 AC 42 ms
52,352 KB
testcase_36 AC 45 ms
57,088 KB
testcase_37 AC 50 ms
59,776 KB
testcase_38 AC 46 ms
57,984 KB
testcase_39 AC 47 ms
58,496 KB
testcase_40 AC 48 ms
58,752 KB
testcase_41 AC 50 ms
59,136 KB
testcase_42 AC 49 ms
59,136 KB
testcase_43 AC 918 ms
78,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

mod = 998244353
dp = [[0] * 27 for _ in range(27)]
dp[-1][-1] = 1

for i in s:
    

    if i == "?":
        i_sum = [sum(dp[j][i] for j in range(27)) for i in range(27)]
        dp2 = [[0 if i == j or j == 26 else i_sum[i] - dp[j][i] for j in range(27)]for i in range(27)]

    else:
        char = ord(i) - ord("a")
        
        dp2 = [[0] * 27 for _ in range(27)]
        for i in range(27):
            for j in range(27):
                if i == char or j == char:
                    continue
                dp2[j][char] += dp[i][j]

    dp = [[i % mod for i in j] for j in dp2]

print(sum(map(sum, dp)) % mod)
0