結果

問題 No.1702 count good string
ユーザー umezoumezo
提出日時 2021-10-08 22:46:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 200,872 KB
実行使用メモリ 19,392 KB
最終ジャッジ日時 2023-09-30 11:48:19
合計ジャッジ時間 4,248 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 28 ms
19,120 KB
testcase_14 AC 28 ms
19,116 KB
testcase_15 AC 28 ms
19,248 KB
testcase_16 AC 28 ms
19,120 KB
testcase_17 AC 28 ms
19,220 KB
testcase_18 AC 27 ms
19,128 KB
testcase_19 AC 28 ms
19,112 KB
testcase_20 AC 28 ms
19,116 KB
testcase_21 AC 28 ms
19,176 KB
testcase_22 AC 28 ms
19,196 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 2 ms
4,384 KB
testcase_33 AC 27 ms
19,112 KB
testcase_34 AC 26 ms
19,384 KB
testcase_35 AC 26 ms
19,124 KB
testcase_36 AC 27 ms
19,096 KB
testcase_37 AC 27 ms
19,204 KB
testcase_38 AC 27 ms
19,180 KB
testcase_39 AC 27 ms
19,392 KB
testcase_40 AC 26 ms
19,188 KB
testcase_41 AC 27 ms
19,116 KB
testcase_42 AC 26 ms
19,180 KB
testcase_43 AC 27 ms
19,096 KB
testcase_44 AC 27 ms
19,268 KB
testcase_45 AC 1 ms
4,376 KB
testcase_46 AC 1 ms
4,380 KB
testcase_47 AC 2 ms
4,380 KB
testcase_48 AC 1 ms
4,380 KB
testcase_49 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
const int MOD=1e9+7;
ll dp[100100][10][2];
const string yuki="yukicoder";

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  string s;
  cin>>n>>s;
  
  dp[0][0][0]=1;
  rep(i,n){
    rep(j,10){
      rep(k,2){
        dp[i+1][j][k]=(dp[i+1][j][k]+dp[i][j][k])%MOD;
        if(j<9 && k==0 && s[i]=='?') dp[i+1][j+1][k+1]=(dp[i+1][j+1][k+1]+dp[i][j][k])%MOD;
        if(j<9 && s[i]==yuki[j]) dp[i+1][j+1][k]=(dp[i+1][j+1][k]+dp[i][j][k])%MOD;
      }
    }
  }
  cout<<(dp[n][9][0]+dp[n][9][1])%MOD<<endl;
  
  return 0;
}
0