結果

問題 No.1646 Avoid Palindrome
ユーザー H3PO4H3PO4
提出日時 2021-08-13 22:34:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 540 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,296 KB
最終ジャッジ日時 2024-10-03 20:24:18
合計ジャッジ時間 36,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
51,296 KB
testcase_01 AC 524 ms
44,212 KB
testcase_02 AC 518 ms
44,092 KB
testcase_03 AC 520 ms
44,548 KB
testcase_04 AC 2,778 ms
44,212 KB
testcase_05 AC 2,740 ms
44,092 KB
testcase_06 AC 2,679 ms
44,224 KB
testcase_07 AC 2,737 ms
44,088 KB
testcase_08 AC 2,761 ms
44,088 KB
testcase_09 AC 2,646 ms
44,104 KB
testcase_10 AC 2,688 ms
44,240 KB
testcase_11 AC 2,655 ms
44,224 KB
testcase_12 AC 2,733 ms
44,212 KB
testcase_13 AC 2,757 ms
43,956 KB
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 #

import numpy as np

en2asc = lambda s: ord(s) - 97

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

MOD = 998244353

dp = np.zeros((27, 27), dtype=np.int64)
dp[-1, -1] = 1

for s in S:
    dp_sum = dp.sum(axis=1)
    new_dp = np.zeros((27, 27), dtype=np.int64)
    if s == '?':
        for i in range(26):
            tmp = dp_sum - dp[:, i]
            tmp[i] = 0
            new_dp[i] += tmp
    else:
        i = en2asc(s)
        tmp = dp_sum - dp[:, i]
        tmp[i] = 0
        new_dp[i] += tmp

    dp = new_dp % MOD

ans = dp.sum() % MOD
print(ans)
0