結果

問題 No.1740 Alone 'a'
ユーザー tentententen
提出日時 2023-02-03 18:17:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 2,241 bytes
コンパイル時間 3,140 ms
コンパイル使用メモリ 91,388 KB
実行使用メモリ 51,364 KB
最終ジャッジ日時 2024-07-02 16:43:57
合計ジャッジ時間 8,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,716 KB
testcase_01 AC 53 ms
37,024 KB
testcase_02 AC 52 ms
37,156 KB
testcase_03 AC 187 ms
51,360 KB
testcase_04 AC 185 ms
51,364 KB
testcase_05 AC 56 ms
37,384 KB
testcase_06 AC 56 ms
37,380 KB
testcase_07 AC 53 ms
37,200 KB
testcase_08 AC 52 ms
37,156 KB
testcase_09 AC 52 ms
37,224 KB
testcase_10 AC 52 ms
37,148 KB
testcase_11 AC 74 ms
39,124 KB
testcase_12 AC 158 ms
46,928 KB
testcase_13 AC 132 ms
45,788 KB
testcase_14 AC 171 ms
51,288 KB
testcase_15 AC 54 ms
37,044 KB
testcase_16 AC 122 ms
45,296 KB
testcase_17 AC 54 ms
37,128 KB
testcase_18 AC 67 ms
37,724 KB
testcase_19 AC 142 ms
45,644 KB
testcase_20 AC 102 ms
41,804 KB
testcase_21 AC 118 ms
45,768 KB
testcase_22 AC 126 ms
45,644 KB
testcase_23 AC 120 ms
45,548 KB
testcase_24 AC 101 ms
41,796 KB
testcase_25 AC 103 ms
41,968 KB
testcase_26 AC 117 ms
45,600 KB
testcase_27 AC 123 ms
45,680 KB
testcase_28 AC 112 ms
45,832 KB
testcase_29 AC 170 ms
51,080 KB
testcase_30 AC 119 ms
45,692 KB
testcase_31 AC 128 ms
45,648 KB
testcase_32 AC 115 ms
46,028 KB
testcase_33 AC 135 ms
45,312 KB
testcase_34 AC 72 ms
38,292 KB
testcase_35 AC 109 ms
45,540 KB
testcase_36 AC 92 ms
40,900 KB
testcase_37 AC 72 ms
38,548 KB
testcase_38 AC 89 ms
40,628 KB
testcase_39 AC 60 ms
37,468 KB
testcase_40 AC 76 ms
38,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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();
        long[][] dp = new long[n + 1][2];
        int count = 0;
        for (int i = 1; i <= n; i++) {
            dp[i][0] += dp[i - 1][0] * 25 % MOD;
            dp[i][0] %= MOD;
            dp[i][1] += (dp[i - 1][0] + dp[i - 1][1] * 25 % MOD) % MOD;
            dp[i][1] %= MOD;
            if (count > 1) {
                continue;
            }
            if (inputs[i - 1] > 'a') {
                dp[i][count] += inputs[i - 1] - 'b';
                dp[i][count] %= MOD;
                if (count == 0) {
                    dp[i][1]++;
                    dp[i][1] %= MOD;
                }
            } else {
                count++;
            }
        }
        System.out.println(dp[n][1]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0