結果

問題 No.1740 Alone 'a'
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 22:16:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 125,556 KB
最終ジャッジ日時 2024-11-25 19:13:45
合計ジャッジ時間 13,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,204 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 636 ms
125,312 KB
testcase_04 AC 616 ms
125,556 KB
testcase_05 AC 84 ms
78,192 KB
testcase_06 AC 79 ms
73,440 KB
testcase_07 AC 58 ms
65,208 KB
testcase_08 AC 39 ms
56,624 KB
testcase_09 AC 35 ms
53,532 KB
testcase_10 AC 35 ms
52,300 KB
testcase_11 AC 169 ms
85,044 KB
testcase_12 AC 492 ms
115,624 KB
testcase_13 AC 478 ms
113,436 KB
testcase_14 AC 570 ms
122,756 KB
testcase_15 AC 61 ms
67,672 KB
testcase_16 AC 451 ms
111,816 KB
testcase_17 AC 60 ms
67,868 KB
testcase_18 AC 128 ms
80,356 KB
testcase_19 AC 500 ms
115,732 KB
testcase_20 AC 297 ms
96,684 KB
testcase_21 AC 367 ms
104,256 KB
testcase_22 AC 443 ms
110,208 KB
testcase_23 AC 430 ms
109,832 KB
testcase_24 AC 300 ms
97,180 KB
testcase_25 AC 299 ms
97,176 KB
testcase_26 AC 358 ms
103,736 KB
testcase_27 AC 400 ms
106,136 KB
testcase_28 AC 327 ms
100,672 KB
testcase_29 AC 593 ms
123,020 KB
testcase_30 AC 378 ms
105,128 KB
testcase_31 AC 451 ms
111,032 KB
testcase_32 AC 334 ms
101,024 KB
testcase_33 AC 432 ms
110,600 KB
testcase_34 AC 150 ms
83,184 KB
testcase_35 AC 331 ms
99,908 KB
testcase_36 AC 280 ms
96,112 KB
testcase_37 AC 147 ms
83,680 KB
testcase_38 AC 252 ms
92,712 KB
testcase_39 AC 95 ms
78,596 KB
testcase_40 AC 182 ms
86,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = str(input())
mod = 998244353
dp = [[[0]*2 for j in range(2)] for i in range(n+1)]
dp[0][0][0] = 1
for i, c in enumerate(s):
    c = ord(c)-ord('a')
    for j in range(2):
        for k in range(2):
            for d in range(26):
                ni = i+1
                nj = j
                nk = k
                if d == 0:
                    if j == 0:
                        nj += 1
                    else:
                        continue
                if k == 0:
                    if d > c:
                        continue
                    elif d < c:
                        nk = 1
                    else:
                        pass
                dp[ni][nj][nk] += dp[i][j][k]%mod
ans = sum(dp[n][1])
if s.count('a') == 1:
    ans -= 1
print(ans%mod)
0