結果

問題 No.1740 Alone 'a'
ユーザー tentententen
提出日時 2024-08-08 12:46:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 2,160 bytes
コンパイル時間 2,594 ms
コンパイル使用メモリ 78,964 KB
実行使用メモリ 62,584 KB
最終ジャッジ日時 2024-08-08 12:46:50
合計ジャッジ時間 8,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,016 KB
testcase_01 AC 50 ms
50,396 KB
testcase_02 AC 50 ms
50,008 KB
testcase_03 AC 159 ms
62,584 KB
testcase_04 AC 149 ms
61,648 KB
testcase_05 AC 62 ms
50,276 KB
testcase_06 AC 53 ms
50,384 KB
testcase_07 AC 50 ms
50,060 KB
testcase_08 AC 49 ms
50,136 KB
testcase_09 AC 51 ms
50,324 KB
testcase_10 AC 50 ms
50,476 KB
testcase_11 AC 68 ms
50,512 KB
testcase_12 AC 130 ms
56,804 KB
testcase_13 AC 129 ms
56,820 KB
testcase_14 AC 129 ms
61,368 KB
testcase_15 AC 51 ms
50,112 KB
testcase_16 AC 129 ms
56,812 KB
testcase_17 AC 50 ms
50,144 KB
testcase_18 AC 59 ms
50,144 KB
testcase_19 AC 138 ms
56,840 KB
testcase_20 AC 79 ms
53,984 KB
testcase_21 AC 111 ms
56,988 KB
testcase_22 AC 122 ms
57,092 KB
testcase_23 AC 124 ms
57,108 KB
testcase_24 AC 91 ms
53,624 KB
testcase_25 AC 88 ms
53,360 KB
testcase_26 AC 108 ms
56,992 KB
testcase_27 AC 107 ms
56,568 KB
testcase_28 AC 95 ms
56,308 KB
testcase_29 AC 151 ms
61,716 KB
testcase_30 AC 105 ms
56,680 KB
testcase_31 AC 126 ms
56,744 KB
testcase_32 AC 106 ms
56,816 KB
testcase_33 AC 132 ms
57,008 KB
testcase_34 AC 64 ms
50,544 KB
testcase_35 AC 96 ms
56,416 KB
testcase_36 AC 78 ms
53,180 KB
testcase_37 AC 61 ms
50,892 KB
testcase_38 AC 76 ms
53,228 KB
testcase_39 AC 55 ms
50,404 KB
testcase_40 AC 72 ms
52,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int length = inputs.length;
        long[][] dp = new long[length][2];
        int aCount = 0;
        if (inputs[0] == 'a') {
            aCount = 1;
        } else {
            dp[0][0] = inputs[0] - 'b';
            dp[0][1] = 1;
        }
        for (int i = 1; i < length; i++) {
            int x = inputs[i] - 'a';
            dp[i][0] = dp[i - 1][0] * 25 % MOD;
            dp[i][1] = (dp[i - 1][0] + dp[i - 1][1] * 25) % MOD;
            if (aCount == 0) {
                if (x > 0) {
                    dp[i][0] += x - 1;
                    dp[i][0] %= MOD;
                    dp[i][1]++;
                    dp[i][1] %= MOD;
                }
            } else if (aCount == 1) {
                if (x > 0) {
                    dp[i][1] += x - 1;
                    dp[i][1] %= MOD;
                }
            }
            if (x == 0) {
                aCount++;
            }
        }
        System.out.println(dp[length - 1][1]);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0