結果

問題 No.1740 Alone 'a'
ユーザー tentententen
提出日時 2022-09-07 09:18:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,655 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 51,224 KB
最終ジャッジ日時 2024-11-22 11:34:52
合計ジャッジ時間 9,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,816 KB
testcase_01 AC 53 ms
37,128 KB
testcase_02 AC 54 ms
36,796 KB
testcase_03 AC 176 ms
50,896 KB
testcase_04 AC 179 ms
51,224 KB
testcase_05 AC 58 ms
37,288 KB
testcase_06 AC 57 ms
37,064 KB
testcase_07 AC 53 ms
37,160 KB
testcase_08 AC 52 ms
37,160 KB
testcase_09 AC 53 ms
37,076 KB
testcase_10 AC 53 ms
36,672 KB
testcase_11 AC 74 ms
38,812 KB
testcase_12 AC 142 ms
46,396 KB
testcase_13 AC 133 ms
46,120 KB
testcase_14 AC 145 ms
50,076 KB
testcase_15 AC 55 ms
37,196 KB
testcase_16 AC 126 ms
46,344 KB
testcase_17 AC 54 ms
36,944 KB
testcase_18 AC 67 ms
37,952 KB
testcase_19 AC 133 ms
45,908 KB
testcase_20 AC 97 ms
41,832 KB
testcase_21 AC 114 ms
45,648 KB
testcase_22 AC 130 ms
45,880 KB
testcase_23 AC 136 ms
45,660 KB
testcase_24 AC 96 ms
41,852 KB
testcase_25 AC 98 ms
41,952 KB
testcase_26 AC 113 ms
45,644 KB
testcase_27 AC 119 ms
45,764 KB
testcase_28 AC 103 ms
45,912 KB
testcase_29 AC 154 ms
50,524 KB
testcase_30 AC 112 ms
45,648 KB
testcase_31 AC 127 ms
45,992 KB
testcase_32 AC 111 ms
45,696 KB
testcase_33 AC 119 ms
45,988 KB
testcase_34 AC 69 ms
38,480 KB
testcase_35 AC 103 ms
45,608 KB
testcase_36 AC 96 ms
41,736 KB
testcase_37 AC 71 ms
38,672 KB
testcase_38 AC 84 ms
40,872 KB
testcase_39 AC 60 ms
37,408 KB
testcase_40 AC 74 ms
39,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

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[] input = sc.next().toCharArray();
        long[][] dp = new long[n + 1][2];
        int aCount = 0;
        for (int i = 1; i <= n; i++) {
            dp[i][0] = dp[i - 1][0] * 25 % MOD;
            dp[i][1] = (dp[i - 1][0] + dp[i - 1][1] * 25) % MOD;
            if (input[i - 1] == 'a') {
                aCount++;
                continue;
            }
            if (aCount >= 2) {
                continue;
            }
            dp[i][aCount] += input[i - 1] - 'b';
            dp[i][aCount] %= MOD;
            if (aCount == 0) {
                dp[i][1]++;
                dp[i][1] %= MOD;
            }
        }
        System.out.println(dp[n][1]);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0