結果
問題 | No.1646 Avoid Palindrome |
ユーザー | U S |
提出日時 | 2021-08-14 01:17:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,962 bytes |
コンパイル時間 | 902 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 87,920 KB |
最終ジャッジ日時 | 2024-10-04 03:20:38 |
合計ジャッジ時間 | 5,156 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
74,112 KB |
testcase_01 | AC | 69 ms
66,816 KB |
testcase_02 | AC | 66 ms
65,152 KB |
testcase_03 | AC | 96 ms
76,808 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
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 | -- | - |
ソースコード
# import sys # #sys.setrecursionlimit(1000000) # input = sys.stdin.readline def mp():return map(int,input().split()) def lmp():return list(map(int,input().split())) import math import bisect from copy import deepcopy as dc from itertools import accumulate from collections import Counter, defaultdict, deque import itertools def ceil(U,V):return (U+V-1)//V def modf1(N,MOD):return (N-1)%MOD+1 inf = int(1e30) mod = 998244353 n = int(input()) s = input() alpha = [""]*720 for i in range(26): for j in range(26): alpha[(i+1)*26+j+1] = chr(ord("a")+i) + chr(ord(("a"))+j) if n == 1: if s == "?":print(26) else:print(1) exit() dp = [0]*720 tar = s[:2] if "?" not in tar: a = modf1(ord(tar[0]) - ord("a")+1,26) b = modf1(ord(tar[1]) - ord("a")+1,26) dp[a*26+b] += 1 elif tar[0] != "?" and tar[1] == "?": a = modf1(ord(tar[0]) - ord("a")+1,26) for j in range(26): if a-1 != j:dp[a*26+j+1] += 1 elif tar[0] == "?" and tar[1] != "?": b = modf1(ord(tar[0]) - ord("a")+1,26) for i in range(26): if b-1 != i:dp[(i+1)*26+b] += 1 else: for i in range(26): for j in range(26): if i != j:dp[(i+1)*26+j+1] += 1 #print(dp) for i in range(2,n): now = [0]*720 tar = s[i] if tar != "?": for j in range(27,703): if alpha[j][0] != tar and alpha[j][1] != tar: a = modf1(ord(alpha[j][1]) - ord("a")+1,26) b = modf1(ord(tar) - ord("a")+1,26) now[a*26+b] += dp[j] else: for j in range(27,703): for k in range(26): nxt = chr(ord("a")+k) if nxt not in alpha[j]: a = modf1(ord(alpha[j][1]) - ord("a") + 1, 26) b = modf1(ord(nxt) - ord("a") + 1, 26) now[a * 26 + b] += dp[j] #print(a * 26 + b) for i in range(27,703): now[i] %= mod dp = now print(sum(dp)%mod)