結果

問題 No.1646 Avoid Palindrome
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-17 18:53:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 927 ms / 3,000 ms
コード長 336 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-08-17 18:53:40
合計ジャッジ時間 28,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,160 KB
testcase_01 AC 45 ms
61,312 KB
testcase_02 AC 41 ms
58,752 KB
testcase_03 AC 46 ms
61,696 KB
testcase_04 AC 778 ms
76,800 KB
testcase_05 AC 751 ms
77,036 KB
testcase_06 AC 738 ms
76,992 KB
testcase_07 AC 866 ms
76,896 KB
testcase_08 AC 777 ms
77,440 KB
testcase_09 AC 828 ms
76,928 KB
testcase_10 AC 769 ms
76,892 KB
testcase_11 AC 744 ms
77,184 KB
testcase_12 AC 866 ms
77,384 KB
testcase_13 AC 797 ms
77,224 KB
testcase_14 AC 832 ms
77,136 KB
testcase_15 AC 813 ms
77,056 KB
testcase_16 AC 810 ms
77,184 KB
testcase_17 AC 832 ms
77,056 KB
testcase_18 AC 839 ms
77,056 KB
testcase_19 AC 833 ms
77,184 KB
testcase_20 AC 820 ms
77,056 KB
testcase_21 AC 852 ms
77,440 KB
testcase_22 AC 829 ms
77,056 KB
testcase_23 AC 927 ms
76,924 KB
testcase_24 AC 881 ms
77,312 KB
testcase_25 AC 881 ms
77,184 KB
testcase_26 AC 866 ms
77,628 KB
testcase_27 AC 895 ms
77,184 KB
testcase_28 AC 894 ms
77,696 KB
testcase_29 AC 671 ms
77,056 KB
testcase_30 AC 692 ms
76,940 KB
testcase_31 AC 674 ms
76,928 KB
testcase_32 AC 686 ms
76,928 KB
testcase_33 AC 673 ms
76,928 KB
testcase_34 AC 662 ms
76,800 KB
testcase_35 AC 39 ms
56,832 KB
testcase_36 AC 40 ms
57,216 KB
testcase_37 AC 41 ms
59,136 KB
testcase_38 AC 41 ms
58,496 KB
testcase_39 AC 40 ms
57,728 KB
testcase_40 AC 41 ms
58,240 KB
testcase_41 AC 42 ms
60,288 KB
testcase_42 AC 43 ms
59,264 KB
testcase_43 AC 695 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
M=998244353
q=[[0]*27 for i in range(27)]
q[-1][-1]=1
for c in s:
  nq=[[0]*27 for i in range(27)]
  for i1 in range(27):
    y=sum(q[i1])%M
    for i3 in range(26):
      if i3!=i1:
        if c==chr(i3+ord("a")) or c=="?":
          nq[i3][i1]=(y-q[i1][i3])%M
  q=nq
print(sum(sum(q[i]) for i in range(27))%M)
0