結果

問題 No.1740 Alone 'a'
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:33:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 77,384 KB
実行使用メモリ 50,520 KB
最終ジャッジ日時 2024-05-04 09:50:17
合計ジャッジ時間 10,740 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,572 KB
testcase_01 AC 113 ms
41,864 KB
testcase_02 AC 110 ms
41,532 KB
testcase_03 AC 246 ms
49,820 KB
testcase_04 AC 237 ms
49,888 KB
testcase_05 AC 136 ms
42,240 KB
testcase_06 AC 144 ms
41,812 KB
testcase_07 AC 115 ms
41,496 KB
testcase_08 AC 113 ms
41,488 KB
testcase_09 AC 118 ms
41,512 KB
testcase_10 AC 113 ms
41,332 KB
testcase_11 AC 155 ms
42,912 KB
testcase_12 AC 234 ms
50,252 KB
testcase_13 AC 227 ms
47,252 KB
testcase_14 AC 253 ms
48,992 KB
testcase_15 AC 124 ms
41,712 KB
testcase_16 AC 228 ms
46,948 KB
testcase_17 AC 119 ms
41,816 KB
testcase_18 AC 147 ms
42,524 KB
testcase_19 AC 233 ms
50,520 KB
testcase_20 AC 195 ms
47,524 KB
testcase_21 AC 232 ms
47,624 KB
testcase_22 AC 222 ms
47,228 KB
testcase_23 AC 218 ms
46,920 KB
testcase_24 AC 201 ms
47,868 KB
testcase_25 AC 193 ms
47,484 KB
testcase_26 AC 218 ms
47,336 KB
testcase_27 AC 222 ms
47,716 KB
testcase_28 AC 226 ms
47,228 KB
testcase_29 AC 241 ms
48,992 KB
testcase_30 AC 228 ms
47,700 KB
testcase_31 AC 231 ms
46,652 KB
testcase_32 AC 220 ms
46,788 KB
testcase_33 AC 215 ms
47,108 KB
testcase_34 AC 150 ms
42,604 KB
testcase_35 AC 206 ms
46,940 KB
testcase_36 AC 197 ms
47,368 KB
testcase_37 AC 156 ms
42,292 KB
testcase_38 AC 188 ms
44,428 KB
testcase_39 AC 116 ms
42,124 KB
testcase_40 AC 154 ms
43,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt();
			char[] S = sc.next().toCharArray();
			final int MOD = 998_244_353;
			final int LESS = 0, EQUAL = 1;
			long[][][] dp = new long[2][2][N + 1];
			dp[EQUAL][0][0] = 1;
			for (int i = 0;i < N;++ i) {
				if (S[i] != 'a') {
					dp[EQUAL][0][i + 1] = dp[EQUAL][0][i];
					dp[EQUAL][1][i + 1] = dp[EQUAL][1][i];
				} else dp[EQUAL][1][i + 1] = dp[EQUAL][0][i];
				dp[LESS][0][i + 1] = dp[EQUAL][0][i] * Math.max(0, S[i] - 'b');
				dp[LESS][0][i + 1] += dp[LESS][0][i] * 25;
				dp[LESS][0][i + 1] %= MOD;
				if (S[i] != 'a') dp[LESS][1][i + 1] = dp[EQUAL][0][i];
				dp[LESS][1][i + 1] += dp[EQUAL][1][i] * Math.max(0, S[i] - 'b');
				dp[LESS][1][i + 1] += dp[LESS][0][i];
				dp[LESS][1][i + 1] += dp[LESS][1][i] * 25;
				dp[LESS][1][i + 1] %= MOD;
			}
			System.out.println(dp[LESS][1][N]);
		}
	}
}
0