結果

問題 No.1702 count good string
ユーザー tentententen
提出日時 2021-10-18 19:40:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,758 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 52,372 KB
最終ジャッジ日時 2024-09-19 15:49:39
合計ジャッジ時間 8,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,108 KB
testcase_01 AC 49 ms
50,352 KB
testcase_02 AC 50 ms
50,280 KB
testcase_03 AC 49 ms
50,092 KB
testcase_04 AC 48 ms
50,356 KB
testcase_05 AC 49 ms
50,272 KB
testcase_06 AC 50 ms
50,316 KB
testcase_07 AC 51 ms
51,904 KB
testcase_08 AC 49 ms
50,052 KB
testcase_09 AC 48 ms
50,104 KB
testcase_10 AC 48 ms
50,176 KB
testcase_11 AC 53 ms
50,368 KB
testcase_12 AC 49 ms
50,352 KB
testcase_13 AC 112 ms
52,028 KB
testcase_14 AC 111 ms
52,276 KB
testcase_15 AC 110 ms
52,276 KB
testcase_16 AC 110 ms
52,164 KB
testcase_17 AC 109 ms
52,260 KB
testcase_18 AC 108 ms
52,160 KB
testcase_19 AC 110 ms
52,244 KB
testcase_20 AC 112 ms
52,344 KB
testcase_21 AC 112 ms
52,260 KB
testcase_22 AC 109 ms
52,208 KB
testcase_23 AC 48 ms
50,424 KB
testcase_24 AC 49 ms
49,972 KB
testcase_25 AC 49 ms
50,388 KB
testcase_26 AC 48 ms
50,344 KB
testcase_27 AC 49 ms
50,360 KB
testcase_28 AC 48 ms
50,384 KB
testcase_29 AC 48 ms
50,276 KB
testcase_30 AC 53 ms
50,440 KB
testcase_31 AC 48 ms
50,184 KB
testcase_32 AC 49 ms
50,372 KB
testcase_33 AC 108 ms
52,220 KB
testcase_34 AC 104 ms
51,880 KB
testcase_35 AC 106 ms
52,372 KB
testcase_36 AC 107 ms
51,976 KB
testcase_37 AC 108 ms
52,316 KB
testcase_38 AC 108 ms
52,184 KB
testcase_39 AC 106 ms
52,012 KB
testcase_40 AC 103 ms
52,328 KB
testcase_41 AC 105 ms
52,124 KB
testcase_42 AC 105 ms
52,184 KB
testcase_43 AC 99 ms
51,944 KB
testcase_44 AC 115 ms
51,968 KB
testcase_45 AC 48 ms
50,408 KB
testcase_46 AC 47 ms
50,112 KB
testcase_47 AC 48 ms
50,120 KB
testcase_48 AC 49 ms
52,292 KB
testcase_49 AC 47 ms
50,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        String base = "yukicoder";
        int length = base.length();
        int[][] dp = new int[2][length + 1];
        dp[0][0] = 1;
        HashMap<Character, Integer> idxes = new HashMap<>();
        for (int i = 0; i < length; i++) {
            idxes.put(base.charAt(i), i + 1);
        }
        for (char c : sc.next().toCharArray()) {
            if (c == '?') {
                for (int i = 1; i <= length; i++) {
                    dp[1][i] += dp[0][i - 1];
                    dp[1][i] %= MOD;
                }
            } else if (idxes.containsKey(c)) {
                int x = idxes.get(c);
                dp[0][x] += dp[0][x - 1];
                dp[0][x] %= MOD;
                dp[1][x] += dp[1][x - 1];
                dp[1][x] %= MOD;
            }
        }
        System.out.println((dp[0][length] + dp[1][length]) % MOD);
    }
}
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 String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0