結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,500 KB
testcase_01 AC 49 ms
62,636 KB
testcase_02 AC 50 ms
62,180 KB
testcase_03 AC 223 ms
127,692 KB
testcase_04 AC 217 ms
127,652 KB
testcase_05 AC 81 ms
80,284 KB
testcase_06 AC 84 ms
79,672 KB
testcase_07 AC 55 ms
64,708 KB
testcase_08 AC 50 ms
63,508 KB
testcase_09 AC 49 ms
62,760 KB
testcase_10 AC 50 ms
61,900 KB
testcase_11 AC 101 ms
86,772 KB
testcase_12 AC 187 ms
114,636 KB
testcase_13 AC 179 ms
114,008 KB
testcase_14 AC 212 ms
121,472 KB
testcase_15 AC 66 ms
71,904 KB
testcase_16 AC 178 ms
114,408 KB
testcase_17 AC 66 ms
71,476 KB
testcase_18 AC 86 ms
80,376 KB
testcase_19 AC 183 ms
114,320 KB
testcase_20 AC 123 ms
94,140 KB
testcase_21 AC 158 ms
106,888 KB
testcase_22 AC 167 ms
107,860 KB
testcase_23 AC 163 ms
107,888 KB
testcase_24 AC 127 ms
94,060 KB
testcase_25 AC 135 ms
99,556 KB
testcase_26 AC 156 ms
106,244 KB
testcase_27 AC 162 ms
107,272 KB
testcase_28 AC 144 ms
100,832 KB
testcase_29 AC 196 ms
121,072 KB
testcase_30 AC 165 ms
107,572 KB
testcase_31 AC 176 ms
113,768 KB
testcase_32 AC 143 ms
101,004 KB
testcase_33 AC 173 ms
113,040 KB
testcase_34 AC 87 ms
80,564 KB
testcase_35 AC 148 ms
100,824 KB
testcase_36 AC 128 ms
94,096 KB
testcase_37 AC 88 ms
80,444 KB
testcase_38 AC 121 ms
93,860 KB
testcase_39 AC 82 ms
80,740 KB
testcase_40 AC 99 ms
87,356 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