結果

問題 No.1702 count good string
ユーザー ks2mks2m
提出日時 2021-10-08 22:26:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-07-23 05:03:25
合計ジャッジ時間 14,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,080 KB
testcase_01 AC 138 ms
53,880 KB
testcase_02 AC 132 ms
54,304 KB
testcase_03 AC 131 ms
54,212 KB
testcase_04 AC 132 ms
54,216 KB
testcase_05 AC 134 ms
54,312 KB
testcase_06 AC 127 ms
54,088 KB
testcase_07 AC 130 ms
54,108 KB
testcase_08 AC 132 ms
54,040 KB
testcase_09 AC 131 ms
54,320 KB
testcase_10 AC 132 ms
54,112 KB
testcase_11 AC 132 ms
53,900 KB
testcase_12 AC 121 ms
53,016 KB
testcase_13 AC 299 ms
77,576 KB
testcase_14 AC 306 ms
77,284 KB
testcase_15 AC 320 ms
77,952 KB
testcase_16 AC 322 ms
77,724 KB
testcase_17 AC 307 ms
77,604 KB
testcase_18 AC 329 ms
77,652 KB
testcase_19 AC 308 ms
77,648 KB
testcase_20 AC 312 ms
77,808 KB
testcase_21 AC 312 ms
77,516 KB
testcase_22 AC 317 ms
77,508 KB
testcase_23 AC 135 ms
54,128 KB
testcase_24 AC 134 ms
54,200 KB
testcase_25 AC 137 ms
54,212 KB
testcase_26 AC 140 ms
54,260 KB
testcase_27 AC 137 ms
54,232 KB
testcase_28 AC 138 ms
53,980 KB
testcase_29 AC 138 ms
53,948 KB
testcase_30 AC 137 ms
54,188 KB
testcase_31 AC 138 ms
54,064 KB
testcase_32 AC 142 ms
54,032 KB
testcase_33 AC 325 ms
77,296 KB
testcase_34 AC 308 ms
77,544 KB
testcase_35 AC 313 ms
77,716 KB
testcase_36 AC 324 ms
77,624 KB
testcase_37 AC 315 ms
77,464 KB
testcase_38 AC 307 ms
77,404 KB
testcase_39 AC 326 ms
77,704 KB
testcase_40 AC 314 ms
77,712 KB
testcase_41 AC 303 ms
77,460 KB
testcase_42 AC 326 ms
77,384 KB
testcase_43 AC 308 ms
77,524 KB
testcase_44 AC 324 ms
77,512 KB
testcase_45 AC 139 ms
54,084 KB
testcase_46 AC 134 ms
53,888 KB
testcase_47 AC 136 ms
54,060 KB
testcase_48 AC 135 ms
54,148 KB
testcase_49 AC 133 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] s = sc.next().toCharArray();
		sc.close();

		char[] t = "yukicoder".toCharArray();
		int m = t.length;
		int m1 = m + 1;
		int m2 = m1 * 2;
		int mod = 1000000007;
		long[][] dp = new long[n + 1][m2];
		dp[0][0] = 1;
		for (int i = 0; i < n; i++) {
			if (s[i] == '?') {
				for (int j = 0; j < m; j++) {
					dp[i + 1][m1 + j + 1] += dp[i][j];
				}
			} else {
				for (int j = 0; j < m; j++) {
					if (s[i] == t[j]) {
						dp[i + 1][j + 1] += dp[i][j];
						dp[i + 1][m1 + j + 1] += dp[i][m1 + j];
					}
				}
			}
			for (int j = 0; j < m2; j++) {
				dp[i + 1][j] += dp[i][j];
				dp[i + 1][j] %= mod;
			}
		}
		long ans = dp[n][m1 - 1] + dp[n][m2 - 1];
		ans %= mod;
		System.out.println(ans);
	}
}
0