結果

問題 No.1740 Alone 'a'
ユーザー tentententen
提出日時 2023-06-29 08:38:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 2,251 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 91,596 KB
実行使用メモリ 51,608 KB
最終ジャッジ日時 2024-07-06 00:32:57
合計ジャッジ時間 7,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,096 KB
testcase_01 AC 43 ms
37,424 KB
testcase_02 AC 43 ms
37,164 KB
testcase_03 AC 158 ms
51,536 KB
testcase_04 AC 159 ms
51,608 KB
testcase_05 AC 48 ms
37,572 KB
testcase_06 AC 46 ms
37,388 KB
testcase_07 AC 44 ms
37,496 KB
testcase_08 AC 42 ms
37,080 KB
testcase_09 AC 43 ms
36,856 KB
testcase_10 AC 44 ms
36,848 KB
testcase_11 AC 61 ms
38,920 KB
testcase_12 AC 128 ms
46,668 KB
testcase_13 AC 116 ms
45,904 KB
testcase_14 AC 141 ms
50,416 KB
testcase_15 AC 47 ms
37,288 KB
testcase_16 AC 110 ms
45,952 KB
testcase_17 AC 45 ms
37,036 KB
testcase_18 AC 56 ms
38,020 KB
testcase_19 AC 108 ms
46,456 KB
testcase_20 AC 81 ms
41,956 KB
testcase_21 AC 102 ms
45,816 KB
testcase_22 AC 103 ms
45,616 KB
testcase_23 AC 107 ms
46,012 KB
testcase_24 AC 82 ms
41,856 KB
testcase_25 AC 83 ms
42,488 KB
testcase_26 AC 100 ms
45,968 KB
testcase_27 AC 100 ms
45,928 KB
testcase_28 AC 93 ms
46,096 KB
testcase_29 AC 145 ms
50,476 KB
testcase_30 AC 102 ms
45,820 KB
testcase_31 AC 112 ms
46,128 KB
testcase_32 AC 98 ms
45,912 KB
testcase_33 AC 108 ms
45,800 KB
testcase_34 AC 58 ms
38,704 KB
testcase_35 AC 91 ms
45,728 KB
testcase_36 AC 77 ms
41,088 KB
testcase_37 AC 59 ms
38,520 KB
testcase_38 AC 70 ms
40,792 KB
testcase_39 AC 49 ms
37,608 KB
testcase_40 AC 66 ms
39,416 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 aCount = 0;
        for (int i = 1; i <= n; i++) {
            int idx = inputs[i - 1] - 'a';
            dp[i][0] = dp[i - 1][0] * 25 % MOD;
            dp[i][1] = (dp[i - 1][0] + dp[i - 1][1] * 25) % MOD;
            if (idx == 0) {
                aCount++;
                continue;
            }
            if (aCount > 1) {
                continue;
            }
            if (aCount == 0) {
                dp[i][1]++;
                dp[i][1] %= MOD;
                dp[i][0] += idx - 1;
                dp[i][0] %= MOD;
            } else {
                dp[i][1] += idx - 1;
            }
            
        }
        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