結果

問題 No.1740 Alone 'a'
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-11-25 21:01:24
合計ジャッジ時間 11,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,748 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 37 ms
53,476 KB
testcase_03 AC 535 ms
76,456 KB
testcase_04 AC 531 ms
76,296 KB
testcase_05 AC 79 ms
76,048 KB
testcase_06 AC 78 ms
76,204 KB
testcase_07 AC 59 ms
68,628 KB
testcase_08 AC 42 ms
58,884 KB
testcase_09 AC 36 ms
52,184 KB
testcase_10 AC 35 ms
52,484 KB
testcase_11 AC 142 ms
76,320 KB
testcase_12 AC 411 ms
76,336 KB
testcase_13 AC 395 ms
76,156 KB
testcase_14 AC 477 ms
76,548 KB
testcase_15 AC 62 ms
70,640 KB
testcase_16 AC 413 ms
76,616 KB
testcase_17 AC 62 ms
70,404 KB
testcase_18 AC 117 ms
75,848 KB
testcase_19 AC 415 ms
76,332 KB
testcase_20 AC 249 ms
76,388 KB
testcase_21 AC 314 ms
75,992 KB
testcase_22 AC 362 ms
76,556 KB
testcase_23 AC 384 ms
76,120 KB
testcase_24 AC 253 ms
75,972 KB
testcase_25 AC 253 ms
76,392 KB
testcase_26 AC 311 ms
76,288 KB
testcase_27 AC 327 ms
75,980 KB
testcase_28 AC 280 ms
76,072 KB
testcase_29 AC 499 ms
76,044 KB
testcase_30 AC 319 ms
75,972 KB
testcase_31 AC 379 ms
76,304 KB
testcase_32 AC 290 ms
76,456 KB
testcase_33 AC 379 ms
76,236 KB
testcase_34 AC 127 ms
75,964 KB
testcase_35 AC 273 ms
76,192 KB
testcase_36 AC 249 ms
75,920 KB
testcase_37 AC 132 ms
76,000 KB
testcase_38 AC 213 ms
76,160 KB
testcase_39 AC 88 ms
75,928 KB
testcase_40 AC 157 ms
75,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
mod = 998244353
dp = [[0]*2 for _ in range(2)]
dp[0][0] = 1
for c in s:
    nxt = [[0]*2 for _ in range(2)]
    for i in range(2):
        for j in range(2):
            for k in range(26):
                if i==0 and ord(c)-ord('a') < k:
                    continue
                if j==1 and k==0:
                    continue
                nxt[i or ord(c)-ord('a')>k][j or k==0] += dp[i][j]%mod
    dp = nxt
print(dp[1][1]%mod)
0