結果

問題 No.1740 Alone 'a'
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-11-24 23:40:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 67,832 KB
最終ジャッジ日時 2024-11-24 23:40:33
合計ジャッジ時間 4,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,160 KB
testcase_01 AC 34 ms
53,076 KB
testcase_02 AC 33 ms
53,508 KB
testcase_03 AC 218 ms
67,832 KB
testcase_04 AC 189 ms
67,264 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
53,088 KB
testcase_09 AC 35 ms
52,156 KB
testcase_10 AC 38 ms
53,020 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
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 WA -
testcase_28 AC 35 ms
53,332 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 37 ms
53,388 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1740

MOD = 998244353

def main():
    N = int(input())
    S = input()

    answer = 0
    has_one_a = False
    for i in range(N - 1):
        s = S[i]
        if s >= "b":
            if not has_one_a:
                answer += pow(25, N - 1 - i, MOD)
                answer %= MOD
        if s >= "c":
            v = ord(s) - 1 - ord("a")
            if not has_one_a:
                ans = ((N - 1 - i) * pow(25, N - 2 - i, MOD)) % MOD
                answer += (v * ans) % MOD
                answer %= MOD
            else:
                answer += pow(25, N - 1 - i, MOD)
                answer %= MOD
        
        if s == "a":
            if not has_one_a:
                has_one_a = True
            else:
                print(answer)
                return
    
    # 最後の一つについて
    s = ord(S[-1]) - ord("a")
    for t in range(s):
        if t == 0 and not has_one_a:
            answer += 1
            answer %= MOD
        if t > 0 and has_one_a:
            answer += 1
            answer %= MOD
    print(answer)

    



if __name__ == "__main__":
    main()
0