結果

問題 No.1740 Alone 'a'
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-04 10:39:03
合計ジャッジ時間 12,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,352 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 599 ms
76,544 KB
testcase_04 AC 597 ms
76,544 KB
testcase_05 AC 97 ms
76,160 KB
testcase_06 AC 97 ms
75,776 KB
testcase_07 AC 72 ms
67,840 KB
testcase_08 AC 47 ms
58,880 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 169 ms
76,160 KB
testcase_12 AC 473 ms
76,288 KB
testcase_13 AC 449 ms
76,288 KB
testcase_14 AC 539 ms
76,160 KB
testcase_15 AC 76 ms
69,888 KB
testcase_16 AC 433 ms
76,288 KB
testcase_17 AC 76 ms
70,016 KB
testcase_18 AC 144 ms
76,288 KB
testcase_19 AC 468 ms
76,160 KB
testcase_20 AC 282 ms
76,160 KB
testcase_21 AC 357 ms
76,160 KB
testcase_22 AC 415 ms
76,672 KB
testcase_23 AC 412 ms
76,416 KB
testcase_24 AC 288 ms
76,160 KB
testcase_25 AC 286 ms
76,032 KB
testcase_26 AC 356 ms
76,416 KB
testcase_27 AC 375 ms
76,288 KB
testcase_28 AC 321 ms
76,288 KB
testcase_29 AC 540 ms
76,544 KB
testcase_30 AC 361 ms
76,288 KB
testcase_31 AC 427 ms
76,288 KB
testcase_32 AC 329 ms
76,416 KB
testcase_33 AC 422 ms
76,160 KB
testcase_34 AC 152 ms
76,160 KB
testcase_35 AC 316 ms
76,288 KB
testcase_36 AC 275 ms
76,416 KB
testcase_37 AC 158 ms
76,288 KB
testcase_38 AC 247 ms
76,416 KB
testcase_39 AC 107 ms
76,288 KB
testcase_40 AC 185 ms
76,032 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