結果

問題 No.1646 Avoid Palindrome
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-08-13 22:16:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 3,000 ms
コード長 752 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-08 15:31:58
合計ジャッジ時間 17,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,776 KB
testcase_01 AC 48 ms
58,624 KB
testcase_02 AC 47 ms
58,496 KB
testcase_03 AC 52 ms
60,800 KB
testcase_04 AC 419 ms
76,160 KB
testcase_05 AC 417 ms
76,160 KB
testcase_06 AC 399 ms
76,032 KB
testcase_07 AC 411 ms
76,032 KB
testcase_08 AC 418 ms
76,160 KB
testcase_09 AC 409 ms
76,160 KB
testcase_10 AC 422 ms
76,032 KB
testcase_11 AC 415 ms
76,416 KB
testcase_12 AC 412 ms
76,032 KB
testcase_13 AC 414 ms
76,032 KB
testcase_14 AC 550 ms
76,032 KB
testcase_15 AC 556 ms
76,160 KB
testcase_16 AC 547 ms
76,032 KB
testcase_17 AC 573 ms
76,160 KB
testcase_18 AC 555 ms
76,288 KB
testcase_19 AC 557 ms
76,288 KB
testcase_20 AC 561 ms
76,032 KB
testcase_21 AC 567 ms
76,032 KB
testcase_22 AC 565 ms
76,288 KB
testcase_23 AC 583 ms
76,160 KB
testcase_24 AC 593 ms
76,160 KB
testcase_25 AC 594 ms
76,160 KB
testcase_26 AC 597 ms
76,160 KB
testcase_27 AC 606 ms
76,288 KB
testcase_28 AC 589 ms
76,160 KB
testcase_29 AC 347 ms
76,032 KB
testcase_30 AC 345 ms
76,032 KB
testcase_31 AC 341 ms
76,416 KB
testcase_32 AC 335 ms
76,288 KB
testcase_33 AC 340 ms
76,544 KB
testcase_34 AC 589 ms
75,904 KB
testcase_35 AC 41 ms
51,840 KB
testcase_36 AC 42 ms
52,096 KB
testcase_37 AC 49 ms
59,008 KB
testcase_38 AC 46 ms
57,984 KB
testcase_39 AC 46 ms
57,856 KB
testcase_40 AC 46 ms
57,600 KB
testcase_41 AC 46 ms
58,240 KB
testcase_42 AC 47 ms
58,112 KB
testcase_43 AC 340 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

dp[i+1][yz] = sum(dp[i][?y]) - dp[i][zy] 

"""


import itertools

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

dp = [0] * (27**2)
dp[-1] = 1
mod = 998244353

for i in range(N):

    dps = [0] * 27
    for j in range(27**2):
        dps[j % 27] += dp[j]
    
    ndp = [0] * (27**2)

    if S[i] == "?":
        for yz in range(27**2):
            y = yz // 27
            z = yz % 27
            if z == 26 or y == z:
                continue
            ndp[yz] = dps[y] - dp[z*27+y]
            ndp[yz] %= mod
    else:
        z = ord(S[i])-ord('a')
        for y in range(27):
            if y == z:
                continue
            ndp[27*y+z] = dps[y] - dp[z*27+y]
            ndp[27*y+z] %= mod

    dp = ndp
    
print (sum(dp) % mod)

            
0