結果
問題 | No.1646 Avoid Palindrome |
ユーザー | moharan627 |
提出日時 | 2021-08-13 23:39:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,965 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 429,952 KB |
最終ジャッジ日時 | 2024-10-03 23:57:35 |
合計ジャッジ時間 | 5,250 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
66,688 KB |
testcase_01 | AC | 49 ms
62,336 KB |
testcase_02 | AC | 49 ms
61,312 KB |
testcase_03 | AC | 58 ms
67,840 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 INF = float('inf') #10**20,2**63,float('inf') MOD = 10**9 + 7 MOD2 = 998244353 #from collections import defaultdict def solve(): def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LC(): return list(input()) def IC(): return [int(c) for c in input()] def MI(): return map(int, sys.stdin.readline().split()) N = II() S = LC() Alpha = {} for i in range(97, 123): Alpha[chr(i)] = i - 97 Alpha[i-97] = chr(i) DP = [[[0]*26 for _ in range(26)] for _ in range(N+10)] if S[0] == "?": for i in range(26): DP[1][0][i] = 1 else: DP[1][0][Alpha[S[0]]] = 1 if N == 1: print(sum(DP[1][0])) exit() if S[1] == "?": for i in range(26): for j in range(26): if i == j:continue DP[2][i][j] += DP[1][0][i] else: for i in range(26): if i == Alpha[S[1]]:continue DP[2][i][Alpha[S[1]]] += DP[1][0][i] if N == 2: Ans = 0 for i in range(26): Ans += sum(DP[2][i]) print(Ans) exit() for n in range(2,N): for i in range(26): for j in range(26): if S[n] == "?": for k in range(26): if i == k or j == k:continue DP[n + 1][j][k] += DP[n][i][j] DP[n + 1][j][k] %= MOD2 else: if i == Alpha[S[n]] or j == Alpha[S[n]]:continue DP[n+1][j][Alpha[S[n]]] += DP[n][i][j] DP[n + 1][j][Alpha[S[n]]] %= MOD2 #print(DP[n+1]) Ans = 0 for i in range(26): for j in range(26): Ans += DP[N][i][j] Ans %= MOD2 print(Ans % MOD2) return solve() #sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!