結果

問題 No.1646 Avoid Palindrome
ユーザー wolgnikwolgnik
提出日時 2021-08-13 21:52:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,346 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 83,668 KB
最終ジャッジ日時 2024-10-03 18:36:04
合計ジャッジ時間 41,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,572 KB
testcase_01 AC 40 ms
61,800 KB
testcase_02 AC 39 ms
61,100 KB
testcase_03 AC 46 ms
65,392 KB
testcase_04 AC 1,095 ms
82,384 KB
testcase_05 AC 1,058 ms
82,852 KB
testcase_06 AC 1,126 ms
82,176 KB
testcase_07 AC 1,099 ms
82,096 KB
testcase_08 AC 1,119 ms
82,024 KB
testcase_09 AC 1,143 ms
81,844 KB
testcase_10 AC 1,136 ms
82,828 KB
testcase_11 AC 1,106 ms
81,928 KB
testcase_12 AC 1,138 ms
82,280 KB
testcase_13 AC 1,043 ms
82,836 KB
testcase_14 AC 1,328 ms
82,528 KB
testcase_15 AC 1,397 ms
82,224 KB
testcase_16 AC 1,333 ms
82,020 KB
testcase_17 AC 1,391 ms
82,312 KB
testcase_18 AC 1,353 ms
82,244 KB
testcase_19 AC 1,327 ms
82,364 KB
testcase_20 AC 1,377 ms
82,308 KB
testcase_21 AC 1,444 ms
83,132 KB
testcase_22 AC 1,365 ms
82,324 KB
testcase_23 AC 1,391 ms
82,516 KB
testcase_24 AC 1,470 ms
82,764 KB
testcase_25 AC 1,471 ms
82,500 KB
testcase_26 AC 1,455 ms
82,596 KB
testcase_27 AC 1,480 ms
82,784 KB
testcase_28 AC 1,455 ms
82,828 KB
testcase_29 AC 959 ms
82,772 KB
testcase_30 AC 991 ms
82,792 KB
testcase_31 AC 1,071 ms
83,668 KB
testcase_32 AC 966 ms
82,772 KB
testcase_33 AC 934 ms
83,108 KB
testcase_34 AC 1,630 ms
82,332 KB
testcase_35 WA -
testcase_36 AC 32 ms
52,664 KB
testcase_37 AC 34 ms
52,748 KB
testcase_38 AC 35 ms
53,664 KB
testcase_39 AC 33 ms
53,256 KB
testcase_40 AC 34 ms
53,568 KB
testcase_41 AC 35 ms
53,744 KB
testcase_42 AC 35 ms
53,924 KB
testcase_43 AC 973 ms
82,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
S = list(input())[: -1]
mod = 998244353

dp = [[0] * 26 for _ in range(26)]

if N == 1:
  if S[0] == "?": print(26)
  else: print(0)
  exit(0)

for x in range(26):
  for y in range(26):
    if x == y: continue
    cx = chr(ord("a") + x)
    cy = chr(ord("a") + y)

    if S[0] == cx and S[1] == cy: dp[x][y] += 1
    if S[0] == "?" and S[1] == cy: dp[x][y] += 1
    if S[0] == cx and S[1] == "?": dp[x][y] += 1
    if S[0] == "?" and S[1] == "?": dp[x][y] += 1
#print(dp)
for c in S[2: ]:
  z = ord(c) - ord("a")
  dp2 = [[0] * 26 for _ in range(26)]
  if c != "?":
    for x in range(26):
      for y in range(26):
        cx = chr(ord("a") + x)
        cy = chr(ord("a") + y)
        if x != z and y != z:
          dp2[y][z] += dp[x][y]
          dp2[y][z] %= mod
  else:
    sm = [0] * 26
    for x in range(26):
      for y in range(26):
        cx = chr(ord("a") + x)
        cy = chr(ord("a") + y)
        dp2[y][y] -= dp[x][y]
        dp2[y][y] %= mod
        dp2[y][x] -= dp[x][y]
        dp2[y][y] %= mod

        sm[y] += dp[x][y]
        sm[y] %= mod

    for x in range(26):
      for y in range(26):
        dp2[x][y] += sm[x]
        dp2[x][y] %= mod

  dp = [t[: ] for t in dp2]

res = 0
for x in range(26):
  for y in range(26):
    res += dp[x][y]
    res %= mod
print(res)
0