結果

問題 No.1702 count good string
ユーザー tentententen
提出日時 2023-01-13 17:44:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 2,381 bytes
コンパイル時間 2,941 ms
コンパイル使用メモリ 93,000 KB
実行使用メモリ 39,472 KB
最終ジャッジ日時 2024-06-06 19:11:55
合計ジャッジ時間 8,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,988 KB
testcase_01 AC 49 ms
36,664 KB
testcase_02 AC 51 ms
36,916 KB
testcase_03 AC 49 ms
36,704 KB
testcase_04 AC 46 ms
36,872 KB
testcase_05 AC 45 ms
36,752 KB
testcase_06 AC 46 ms
37,012 KB
testcase_07 AC 47 ms
37,052 KB
testcase_08 AC 47 ms
36,968 KB
testcase_09 AC 45 ms
36,792 KB
testcase_10 AC 45 ms
36,868 KB
testcase_11 AC 44 ms
36,740 KB
testcase_12 AC 44 ms
37,112 KB
testcase_13 AC 109 ms
39,432 KB
testcase_14 AC 110 ms
39,404 KB
testcase_15 AC 106 ms
39,336 KB
testcase_16 AC 108 ms
39,388 KB
testcase_17 AC 107 ms
39,300 KB
testcase_18 AC 108 ms
39,392 KB
testcase_19 AC 105 ms
39,288 KB
testcase_20 AC 106 ms
39,260 KB
testcase_21 AC 101 ms
39,252 KB
testcase_22 AC 105 ms
39,472 KB
testcase_23 AC 46 ms
37,148 KB
testcase_24 AC 44 ms
36,864 KB
testcase_25 AC 44 ms
36,744 KB
testcase_26 AC 47 ms
36,984 KB
testcase_27 AC 47 ms
37,156 KB
testcase_28 AC 45 ms
37,128 KB
testcase_29 AC 46 ms
37,116 KB
testcase_30 AC 49 ms
36,784 KB
testcase_31 AC 47 ms
36,908 KB
testcase_32 AC 46 ms
36,812 KB
testcase_33 AC 103 ms
39,404 KB
testcase_34 AC 102 ms
39,152 KB
testcase_35 AC 102 ms
38,988 KB
testcase_36 AC 103 ms
39,356 KB
testcase_37 AC 103 ms
39,220 KB
testcase_38 AC 114 ms
39,464 KB
testcase_39 AC 108 ms
39,140 KB
testcase_40 AC 104 ms
39,000 KB
testcase_41 AC 108 ms
39,432 KB
testcase_42 AC 101 ms
38,984 KB
testcase_43 AC 86 ms
38,680 KB
testcase_44 AC 113 ms
39,400 KB
testcase_45 AC 47 ms
37,008 KB
testcase_46 AC 45 ms
37,124 KB
testcase_47 AC 49 ms
36,972 KB
testcase_48 AC 46 ms
37,152 KB
testcase_49 AC 45 ms
36,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] yukicoder = "yukicoder".toCharArray();
        int length = yukicoder.length;
        HashMap<Character, Integer> conv = new HashMap<>();
        for (int i = 0; i < length; i++) {
            conv.put(yukicoder[i], i + 1);
        }
        int[] dp1 = new int[length + 1];
        dp1[0] = 1;
        int[] dp2 = new int[length + 1];
        for (char c : sc.next().toCharArray()) {
            if (c == '?') {
                for (int i = length; i >= 1; i--) {
                    dp2[i] += dp1[i - 1];
                    dp2[i] %= MOD;
                }
            } else if (conv.containsKey(c)) {
                int idx = conv.get(c);
                dp1[idx] += dp1[idx - 1];
                dp1[idx] %= MOD;
                dp2[idx] += dp2[idx - 1];
                dp2[idx] %= MOD;
            }
        }
        System.out.println((dp1[length] + dp2[length]) % MOD);
    }
}

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