結果

問題 No.1740 Alone 'a'
ユーザー dn6049949dn6049949
提出日時 2021-11-14 22:04:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-11-30 07:37:55
合計ジャッジ時間 8,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 44 ms
54,784 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 324 ms
89,856 KB
testcase_04 AC 334 ms
90,368 KB
testcase_05 AC 84 ms
76,672 KB
testcase_06 AC 82 ms
76,416 KB
testcase_07 AC 68 ms
70,272 KB
testcase_08 AC 45 ms
54,912 KB
testcase_09 AC 43 ms
54,400 KB
testcase_10 AC 44 ms
54,400 KB
testcase_11 AC 122 ms
78,592 KB
testcase_12 AC 278 ms
87,408 KB
testcase_13 AC 183 ms
86,912 KB
testcase_14 AC 314 ms
89,856 KB
testcase_15 AC 68 ms
71,424 KB
testcase_16 AC 257 ms
86,016 KB
testcase_17 AC 70 ms
72,064 KB
testcase_18 AC 104 ms
77,312 KB
testcase_19 AC 273 ms
87,680 KB
testcase_20 AC 180 ms
81,792 KB
testcase_21 AC 222 ms
84,224 KB
testcase_22 AC 250 ms
86,032 KB
testcase_23 AC 242 ms
85,760 KB
testcase_24 AC 176 ms
81,792 KB
testcase_25 AC 183 ms
82,176 KB
testcase_26 AC 213 ms
83,456 KB
testcase_27 AC 166 ms
84,608 KB
testcase_28 AC 205 ms
82,808 KB
testcase_29 AC 321 ms
90,240 KB
testcase_30 AC 158 ms
84,352 KB
testcase_31 AC 254 ms
86,144 KB
testcase_32 AC 195 ms
82,560 KB
testcase_33 AC 245 ms
85,888 KB
testcase_34 AC 92 ms
77,568 KB
testcase_35 AC 192 ms
82,432 KB
testcase_36 AC 219 ms
81,152 KB
testcase_37 AC 108 ms
77,800 KB
testcase_38 AC 154 ms
80,316 KB
testcase_39 AC 89 ms
76,544 KB
testcase_40 AC 128 ms
78,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 998244353

def main():
    n = I()
    s = list(map(lambda x:ord(x)-ord("a"),input()))
    dp = [[0]*2 for _ in range(2)]
    dp[0][0] = 1
    for i in s:
        ndp = [[0]*2 for _ in range(2)]
        for j in range(2):
            x = 26 if j else i+1
            for k in range(2):
                dpjk = dp[j][k]
                if not dpjk:
                    continue
                for l in range(x):
                    nk = k+(l==0)
                    if nk > 1:
                        continue
                    nj = j|(l<i)
                    ndp[nj][nk] += dpjk
                    if ndp[nj][nk] >= mod:
                        ndp[nj][nk] -= mod
        dp = ndp
    print(dp[1][1])
    return


if __name__ == "__main__":
    main()
0