結果

問題 No.1646 Avoid Palindrome
ユーザー MitarushiMitarushi
提出日時 2021-07-29 12:42:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,519 ms / 3,000 ms
コード長 679 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-11-08 14:47:11
合計ジャッジ時間 41,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,312 KB
testcase_01 AC 53 ms
61,056 KB
testcase_02 AC 49 ms
59,008 KB
testcase_03 AC 63 ms
64,896 KB
testcase_04 AC 1,053 ms
79,388 KB
testcase_05 AC 1,110 ms
78,948 KB
testcase_06 AC 992 ms
78,900 KB
testcase_07 AC 1,052 ms
79,052 KB
testcase_08 AC 1,048 ms
79,580 KB
testcase_09 AC 1,023 ms
79,280 KB
testcase_10 AC 1,022 ms
78,928 KB
testcase_11 AC 1,005 ms
79,072 KB
testcase_12 AC 1,048 ms
79,380 KB
testcase_13 AC 1,123 ms
78,948 KB
testcase_14 AC 1,405 ms
80,128 KB
testcase_15 AC 1,435 ms
80,000 KB
testcase_16 AC 1,393 ms
80,000 KB
testcase_17 AC 1,445 ms
80,896 KB
testcase_18 AC 1,415 ms
80,256 KB
testcase_19 AC 1,400 ms
80,128 KB
testcase_20 AC 1,381 ms
80,000 KB
testcase_21 AC 1,447 ms
80,384 KB
testcase_22 AC 1,419 ms
80,000 KB
testcase_23 AC 1,365 ms
79,500 KB
testcase_24 AC 1,496 ms
80,512 KB
testcase_25 AC 1,510 ms
80,384 KB
testcase_26 AC 1,519 ms
80,128 KB
testcase_27 AC 1,474 ms
80,768 KB
testcase_28 AC 1,470 ms
80,640 KB
testcase_29 AC 890 ms
78,292 KB
testcase_30 AC 897 ms
78,304 KB
testcase_31 AC 884 ms
78,436 KB
testcase_32 AC 857 ms
78,420 KB
testcase_33 AC 877 ms
78,420 KB
testcase_34 AC 1,350 ms
79,488 KB
testcase_35 AC 43 ms
52,224 KB
testcase_36 AC 46 ms
57,344 KB
testcase_37 AC 52 ms
60,288 KB
testcase_38 AC 48 ms
58,240 KB
testcase_39 AC 48 ms
58,624 KB
testcase_40 AC 48 ms
58,496 KB
testcase_41 AC 50 ms
59,136 KB
testcase_42 AC 51 ms
59,392 KB
testcase_43 AC 1,066 ms
78,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in s:
    dp2 = [[0] * 27 for _ in range(27)]

    if i == "?":
        for i in range(27):
            i_sum = sum(dp[j][i] for j in range(27))
            for j in range(26):
                if i == j:
                    continue

                dp2[i][j] += i_sum - dp[j][i]

    else:
        char = ord(i) - ord("a")

        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