結果

問題 No.1740 Alone 'a'
ユーザー tentententen
提出日時 2021-11-15 12:41:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,812 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 77,876 KB
実行使用メモリ 67,192 KB
最終ジャッジ日時 2024-05-08 09:25:53
合計ジャッジ時間 9,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,904 KB
testcase_01 AC 56 ms
36,948 KB
testcase_02 AC 56 ms
37,036 KB
testcase_03 AC 243 ms
66,624 KB
testcase_04 AC 245 ms
67,192 KB
testcase_05 AC 61 ms
37,816 KB
testcase_06 AC 62 ms
37,416 KB
testcase_07 AC 58 ms
36,652 KB
testcase_08 AC 56 ms
37,016 KB
testcase_09 AC 55 ms
36,888 KB
testcase_10 AC 55 ms
37,088 KB
testcase_11 AC 81 ms
41,024 KB
testcase_12 AC 228 ms
55,984 KB
testcase_13 AC 220 ms
56,408 KB
testcase_14 AC 203 ms
59,056 KB
testcase_15 AC 57 ms
36,644 KB
testcase_16 AC 198 ms
54,620 KB
testcase_17 AC 56 ms
37,324 KB
testcase_18 AC 74 ms
39,336 KB
testcase_19 AC 217 ms
56,588 KB
testcase_20 AC 128 ms
50,284 KB
testcase_21 AC 153 ms
50,708 KB
testcase_22 AC 184 ms
54,544 KB
testcase_23 AC 184 ms
54,404 KB
testcase_24 AC 127 ms
50,204 KB
testcase_25 AC 125 ms
49,504 KB
testcase_26 AC 147 ms
50,652 KB
testcase_27 AC 176 ms
54,952 KB
testcase_28 AC 132 ms
49,868 KB
testcase_29 AC 234 ms
59,448 KB
testcase_30 AC 168 ms
54,088 KB
testcase_31 AC 198 ms
54,640 KB
testcase_32 AC 144 ms
50,480 KB
testcase_33 AC 199 ms
54,664 KB
testcase_34 AC 79 ms
40,140 KB
testcase_35 AC 132 ms
49,940 KB
testcase_36 AC 126 ms
50,228 KB
testcase_37 AC 78 ms
40,452 KB
testcase_38 AC 105 ms
44,968 KB
testcase_39 AC 65 ms
38,264 KB
testcase_40 AC 90 ms
45,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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[] values = sc.next().toCharArray();
        long[][][] dp = new long[n + 1][2][2];
        dp[0][0][0] = 1;
        for (int i = 1; i <= n; i++) {
            if (values[i - 1] == 'a') {
                dp[i][1][0] = dp[i - 1][0][0];
                dp[i][0][1] = (dp[i - 1][0][1] * 25) % MOD;
                dp[i][1][1] = (dp[i - 1][1][1] * 25 + dp[i - 1][0][1]) % MOD;
            } else {
                dp[i][0][0] = dp[i - 1][0][0];
                dp[i][1][0] = dp[i - 1][1][0];
                dp[i][0][1] = (dp[i - 1][0][1] * 25 + dp[i - 1][0][0] * (values[i - 1] - 'b')) % MOD;
                dp[i][1][1] = (dp[i - 1][1][1] * 25 + dp[i - 1][0][1] + dp[i - 1][1][0] * (values[i - 1] - 'b') + dp[i - 1][0][0]) % MOD;
            }
        }
        System.out.println(dp[n][1][1]);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0