結果

問題 No.1740 Alone 'a'
ユーザー 👑 rin204rin204
提出日時 2022-01-23 07:49:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 127,172 KB
最終ジャッジ日時 2024-05-06 18:08:22
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,772 KB
testcase_01 AC 37 ms
52,896 KB
testcase_02 AC 39 ms
52,684 KB
testcase_03 AC 232 ms
127,108 KB
testcase_04 AC 236 ms
127,172 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,756 KB
testcase_09 AC 39 ms
53,204 KB
testcase_10 AC 38 ms
53,324 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 189 ms
114,812 KB
testcase_14 WA -
testcase_15 AC 55 ms
66,244 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 159 ms
107,196 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 150 ms
106,044 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 76 ms
80,524 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
S = input()
S = [ord(s) - 97 for s in S]

# dp[i][eq][a]
dp = [[[0] * 2 for _ in range(2)] for _ in range(n + 1)]
dp[0][1][0] = 1
for i, s in enumerate(S, 1):
    if s == 0:
        dp[i][0][1] = dp[i - 1][0][0] + dp[i - 1][0][1] * 25
        dp[i][1][1] = dp[i - 1][1][0]
    else:
        dp[i][0][0] = dp[i - 1][0][0] * 25 + dp[i - 1][1][0] * (s - 1)
        dp[i][0][1] = dp[i - 1][0][0] + dp[i - 1][0][1] * 25 + dp[i - 1][1][0] + dp[i - 1][1][1] * (s - 1)
        dp[i][1][0] = dp[i - 1][1][0]
        dp[i][1][1] = dp[i - 1][1][1]
    for j in range(2):
        for k in range(2):
            dp[i][j][k] %= MOD

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