結果

問題 No.1740 Alone 'a'
ユーザー customfolkcustomfolk
提出日時 2021-11-12 22:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 2,179 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 127,556 KB
最終ジャッジ日時 2024-05-04 10:36:02
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,388 KB
testcase_01 AC 46 ms
61,516 KB
testcase_02 AC 44 ms
62,660 KB
testcase_03 AC 185 ms
127,448 KB
testcase_04 AC 185 ms
127,556 KB
testcase_05 AC 73 ms
79,820 KB
testcase_06 AC 77 ms
79,560 KB
testcase_07 AC 49 ms
63,244 KB
testcase_08 AC 50 ms
62,364 KB
testcase_09 AC 43 ms
62,788 KB
testcase_10 AC 45 ms
62,396 KB
testcase_11 AC 90 ms
86,724 KB
testcase_12 AC 155 ms
114,456 KB
testcase_13 AC 154 ms
114,056 KB
testcase_14 AC 172 ms
121,304 KB
testcase_15 AC 69 ms
72,460 KB
testcase_16 AC 161 ms
114,032 KB
testcase_17 AC 60 ms
72,068 KB
testcase_18 AC 77 ms
80,684 KB
testcase_19 AC 154 ms
114,248 KB
testcase_20 AC 114 ms
93,840 KB
testcase_21 AC 132 ms
106,776 KB
testcase_22 AC 136 ms
107,524 KB
testcase_23 AC 138 ms
107,428 KB
testcase_24 AC 113 ms
94,164 KB
testcase_25 AC 117 ms
99,212 KB
testcase_26 AC 136 ms
105,872 KB
testcase_27 AC 143 ms
107,644 KB
testcase_28 AC 123 ms
100,620 KB
testcase_29 AC 171 ms
121,164 KB
testcase_30 AC 140 ms
107,216 KB
testcase_31 AC 150 ms
113,836 KB
testcase_32 AC 127 ms
100,648 KB
testcase_33 AC 151 ms
112,916 KB
testcase_34 AC 86 ms
80,244 KB
testcase_35 AC 125 ms
100,592 KB
testcase_36 AC 113 ms
93,824 KB
testcase_37 AC 78 ms
80,464 KB
testcase_38 AC 109 ms
93,740 KB
testcase_39 AC 81 ms
80,024 KB
testcase_40 AC 92 ms
86,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

"""
aがちょうど一つ
aがどこにあるかで場合分け
前に来るのが確定していれば後ろはなんでもいい
桁dpみたい
各aの場所にやる O(logN)ごと
全部OK それより前 全部ダメの3つ
26進数
aを含めない! 割引するか

aのところで引っかかる
aの地点から新しくスタートになる

桁dpっぽい
aを使う前か後か
"""

N = getN()
S = [ord(s) - ord('a') for s in input()]
# dp[i][j][k]: i番目 aを置いたか fast, same
dp = [[[0] * 2 for j in range(2)] for i in range(N + 1)]
dp[0][0][1] = 1

for i in range(N):
    # aを置く
    if S[i] > 0:
        # fast 全てfastになる
        dp[i + 1][1][0] += (dp[i][0][0] + dp[i][0][1])
    else:
        # スピード同じ
        dp[i + 1][1][0] += dp[i][0][0]
        dp[i + 1][1][1] += dp[i][0][1]

    # aを置かない
    if S[i] > 0:
        dp[i + 1][1][0] += dp[i][1][0] * 25 + dp[i][1][1] * (S[i] - 1)
        dp[i + 1][1][1] += dp[i][1][1]
        dp[i + 1][0][0] += dp[i][0][0] * 25 + dp[i][0][1] * (S[i] - 1)
        dp[i + 1][0][1] += dp[i][0][1]
    # aがくる fastしか無理
    else:
        dp[i + 1][1][0] += dp[i][1][0] * 25
        dp[i + 1][0][0] += dp[i][0][0] * 25

    dp[i + 1][1][0] %= MOD
    dp[i + 1][1][1] %= MOD
    dp[i + 1][0][0] %= MOD
    dp[i + 1][0][0] %= MOD

print(dp[-1][1][0] % MOD)
0