結果

問題 No.1740 Alone 'a'
ユーザー roarisroaris
提出日時 2021-11-12 22:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 126,592 KB
最終ジャッジ日時 2024-11-25 18:30:41
合計ジャッジ時間 12,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 41 ms
54,400 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 672 ms
126,336 KB
testcase_04 AC 636 ms
126,592 KB
testcase_05 AC 97 ms
78,532 KB
testcase_06 AC 90 ms
77,896 KB
testcase_07 AC 71 ms
71,680 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 42 ms
53,760 KB
testcase_11 AC 168 ms
85,776 KB
testcase_12 AC 472 ms
116,608 KB
testcase_13 AC 448 ms
114,336 KB
testcase_14 AC 556 ms
123,568 KB
testcase_15 AC 79 ms
74,680 KB
testcase_16 AC 435 ms
112,536 KB
testcase_17 AC 78 ms
74,496 KB
testcase_18 AC 141 ms
82,940 KB
testcase_19 AC 476 ms
116,516 KB
testcase_20 AC 286 ms
97,664 KB
testcase_21 AC 364 ms
105,124 KB
testcase_22 AC 477 ms
110,728 KB
testcase_23 AC 414 ms
110,600 KB
testcase_24 AC 283 ms
98,172 KB
testcase_25 AC 282 ms
97,792 KB
testcase_26 AC 359 ms
104,300 KB
testcase_27 AC 399 ms
106,548 KB
testcase_28 AC 326 ms
101,408 KB
testcase_29 AC 537 ms
123,776 KB
testcase_30 AC 361 ms
106,112 KB
testcase_31 AC 427 ms
112,264 KB
testcase_32 AC 347 ms
101,952 KB
testcase_33 AC 422 ms
111,472 KB
testcase_34 AC 153 ms
84,128 KB
testcase_35 AC 316 ms
100,676 KB
testcase_36 AC 274 ms
96,768 KB
testcase_37 AC 156 ms
84,204 KB
testcase_38 AC 243 ms
93,216 KB
testcase_39 AC 104 ms
79,288 KB
testcase_40 AC 182 ms
87,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
S = input()[:-1]
dp = [[[0]*2 for _ in range(2)] for _ in range(N+1)]
dp[0][0][0] = 1
MOD = 998244353

for i in range(N):
    d = ord(S[i])-ord('a')
    
    for j in range(2):
        for k in range(2):
            for c in range(26 if j else d+1):
                if k==1 and c==0:
                    continue
                
                nj = j|(c<d)
                nk = k+(c==0)
                dp[i+1][nj][nk] += dp[i][j][k]
                dp[i+1][nj][nk] %= MOD

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