結果

問題 No.1646 Avoid Palindrome
ユーザー H3PO4H3PO4
提出日時 2021-08-13 21:45:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 885 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 78,284 KB
最終ジャッジ日時 2024-10-03 18:14:43
合計ジャッジ時間 19,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
66,816 KB
testcase_01 AC 41 ms
61,568 KB
testcase_02 AC 38 ms
59,264 KB
testcase_03 AC 50 ms
65,792 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 2,936 ms
77,980 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

en2asc = lambda s: ord(s) - 97

N = int(input())
S = input()

MOD = 998244353

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

for s in S:
    new_dp = [[0] * 27 for _ in range(27)]
    if s == '?':
        for i in range(26):
            for j in range(27):
                if i == j:
                    continue
                for k in range(27):
                    if i == k:
                        continue
                    new_dp[i][j] += dp[j][k]
    else:
        i = en2asc(s)
        for j in range(27):
            if i == j:
                continue
            for k in range(27):
                if i == k:
                    continue
                new_dp[i][j] += dp[j][k]

    dp = [[0] * 27 for _ in range(27)]
    for i in range(27):
        for j in range(27):
            dp[i][j] = new_dp[i][j] % MOD

ans = sum(sum(row) for row in dp) % MOD
print(ans)
0