結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

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