結果

問題 No.1740 Alone 'a'
ユーザー mkawa2mkawa2
提出日時 2021-11-12 21:58:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 127,232 KB
最終ジャッジ日時 2024-05-04 08:36:27
合計ジャッジ時間 12,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 674 ms
127,232 KB
testcase_04 AC 673 ms
127,104 KB
testcase_05 AC 106 ms
77,952 KB
testcase_06 AC 101 ms
77,568 KB
testcase_07 AC 81 ms
70,528 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 157 ms
85,888 KB
testcase_12 AC 455 ms
117,120 KB
testcase_13 AC 296 ms
114,560 KB
testcase_14 AC 515 ms
124,416 KB
testcase_15 AC 79 ms
70,400 KB
testcase_16 AC 411 ms
113,152 KB
testcase_17 AC 88 ms
73,856 KB
testcase_18 AC 140 ms
82,688 KB
testcase_19 AC 400 ms
116,992 KB
testcase_20 AC 254 ms
98,048 KB
testcase_21 AC 314 ms
105,600 KB
testcase_22 AC 369 ms
111,616 KB
testcase_23 AC 393 ms
111,104 KB
testcase_24 AC 272 ms
98,048 KB
testcase_25 AC 274 ms
97,792 KB
testcase_26 AC 343 ms
104,960 KB
testcase_27 AC 247 ms
106,880 KB
testcase_28 AC 280 ms
101,760 KB
testcase_29 AC 511 ms
124,672 KB
testcase_30 AC 239 ms
105,984 KB
testcase_31 AC 410 ms
112,640 KB
testcase_32 AC 318 ms
101,888 KB
testcase_33 AC 397 ms
112,000 KB
testcase_34 AC 121 ms
83,584 KB
testcase_35 AC 277 ms
100,864 KB
testcase_36 AC 267 ms
96,512 KB
testcase_37 AC 153 ms
84,096 KB
testcase_38 AC 216 ms
93,440 KB
testcase_39 AC 111 ms
79,104 KB
testcase_40 AC 169 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
# md = 10**9+7
md = 998244353

n = II()
aa = [ord(c)-97 for c in SI()]

# dp[見た個数][aを使った][未満確定]
dp = [[[0]*2 for _ in range(2)] for _ in range(n+1)]
dp[0][0][0] = 1

def add(i, j, k, val):
    dp[i][j][k] = (dp[i][j][k]+val)%md

for i, a in enumerate(aa):
    for j in range(2):
        for k in range(2):
            pre = dp[i][j][k]
            if pre == 0: continue
            for c in range(26):
                nj = j
                nk = k
                if j and c == 0: continue
                if c == 0: nj = 1
                if k == 0 and c > a: continue
                if c < a: nk = 1
                add(i+1, nj, nk, pre)

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