結果

問題 No.1702 count good string
ユーザー merlinmerlin
提出日時 2021-10-08 22:20:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 78,152 KB
実行使用メモリ 52,628 KB
最終ジャッジ日時 2024-07-23 04:51:50
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,328 KB
testcase_01 AC 52 ms
50,176 KB
testcase_02 AC 52 ms
50,400 KB
testcase_03 AC 52 ms
50,392 KB
testcase_04 AC 52 ms
50,348 KB
testcase_05 AC 52 ms
50,044 KB
testcase_06 AC 53 ms
50,340 KB
testcase_07 AC 53 ms
50,204 KB
testcase_08 AC 52 ms
50,380 KB
testcase_09 AC 54 ms
50,308 KB
testcase_10 AC 53 ms
49,956 KB
testcase_11 AC 55 ms
52,380 KB
testcase_12 AC 52 ms
50,316 KB
testcase_13 AC 117 ms
52,248 KB
testcase_14 AC 122 ms
52,336 KB
testcase_15 AC 116 ms
52,260 KB
testcase_16 AC 117 ms
51,996 KB
testcase_17 AC 117 ms
52,500 KB
testcase_18 AC 118 ms
52,344 KB
testcase_19 AC 122 ms
52,312 KB
testcase_20 AC 118 ms
52,476 KB
testcase_21 AC 118 ms
52,408 KB
testcase_22 AC 119 ms
52,628 KB
testcase_23 AC 54 ms
50,436 KB
testcase_24 AC 54 ms
50,316 KB
testcase_25 AC 54 ms
50,328 KB
testcase_26 AC 53 ms
49,940 KB
testcase_27 AC 55 ms
50,340 KB
testcase_28 AC 55 ms
50,300 KB
testcase_29 AC 54 ms
50,316 KB
testcase_30 AC 53 ms
50,204 KB
testcase_31 AC 54 ms
50,480 KB
testcase_32 AC 54 ms
50,100 KB
testcase_33 AC 98 ms
52,372 KB
testcase_34 AC 110 ms
52,228 KB
testcase_35 AC 102 ms
52,444 KB
testcase_36 AC 108 ms
52,260 KB
testcase_37 AC 108 ms
52,276 KB
testcase_38 AC 101 ms
52,064 KB
testcase_39 AC 106 ms
52,136 KB
testcase_40 AC 111 ms
52,500 KB
testcase_41 AC 109 ms
52,120 KB
testcase_42 AC 100 ms
52,360 KB
testcase_43 AC 101 ms
51,900 KB
testcase_44 AC 123 ms
52,360 KB
testcase_45 AC 54 ms
50,296 KB
testcase_46 AC 53 ms
49,928 KB
testcase_47 AC 52 ms
50,364 KB
testcase_48 AC 53 ms
50,340 KB
testcase_49 AC 53 ms
50,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        char s[]=bu.readLine().toCharArray();
        HashMap<Character,Integer> mp=new HashMap<>();
        String x="yukicoder";
        int i,l=x.length();
        for(i=0;i<l;i++) mp.put(x.charAt(i),i+1);
        mp.put('?',0);

        long dp[][]=new long[2][l+1],M=(int)1e9+7;
        dp[0][0]=1; //use this only for non ? marks
        for(i=0;i<n;i++)
        if(mp.get(s[i])!=null)
        {
            int in=mp.get(s[i]);
            if(in>0)    //all subsequences which either have a ? or dont
            {
                dp[0][in]=(dp[0][in]+dp[0][in-1])%M;
                dp[1][in]=(dp[1][in]+dp[1][in-1])%M;
            }
            else    //we can use at most 1 ?
            for(int j=l;j>0;j--) dp[1][j]=(dp[0][j-1]+dp[1][j])%M;
        }
        System.out.println((dp[0][l]+dp[1][l])%M);
    }
}
0