結果

問題 No.1646 Avoid Palindrome
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-20 15:37:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,829 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,696 KB
最終ジャッジ日時 2024-11-23 20:29:28
合計ジャッジ時間 122,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,280 KB
testcase_01 AC 48 ms
140,416 KB
testcase_02 AC 47 ms
64,768 KB
testcase_03 AC 60 ms
72,192 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2,626 ms
84,608 KB
testcase_30 AC 2,586 ms
79,488 KB
testcase_31 AC 2,590 ms
79,616 KB
testcase_32 AC 2,586 ms
79,488 KB
testcase_33 AC 2,557 ms
79,232 KB
testcase_34 TLE -
testcase_35 AC 41 ms
52,224 KB
testcase_36 AC 41 ms
52,224 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 AC 40 ms
52,096 KB
testcase_39 WA -
testcase_40 AC 39 ms
52,096 KB
testcase_41 AC 39 ms
52,608 KB
testcase_42 AC 40 ms
52,224 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

import sys
import io, os
input = sys.stdin.readline
mod = 998244353
def main():
n = int(input())
s = str(input().rstrip())
if n == 1:
if s[0] == '?':
print(26)
else:
print(1)
exit()
dp = [0]*(26*26)
if s[0] != '?' and s[1] != '?':
c0 = ord(s[0])-ord('a')
c1 = ord(s[0])-ord('a')
dp[c1*26+c0] = 1
elif s[0] != '?':
c0 = ord(s[0])-ord('a')
for c1 in range(26):
if c0 == c1:
continue
dp[c1*26+c0] = 1
elif s[1] != '?':
c1 = ord(s[1])-ord('a')
for c0 in range(26):
if c0 == c1:
continue
dp[c1*26+c0] = 1
else:
for c0 in range(26):
for c1 in range(26):
if c0 == c1:
continue
dp[c1*26+c0] = 1
for i in range(2, n):
nx = [0]*(26*26)
c = s[i]
if c == '?':
for c in range(26):
for c0 in range(26):
if c0 == c:
continue
for c1 in range(26):
if c1 == c:
continue
nx[c*26+c1] += dp[c1*26+c0]
nx[c*26+c1] %= mod
else:
c = ord(c)-ord('a')
for c0 in range(26):
if c0 == c:
continue
for c1 in range(26):
if c1 == c:
continue
nx[c*26+c1] += dp[c1*26+c0]
nx[c*26+c1] %= mod
dp = nx
ans = 0
for c0 in range(26):
for c1 in range(26):
ans += dp[c1*26+c0]
ans %= mod
print(ans)
if __name__ == '__main__':
main()
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0