結果

問題 No.1702 count good string
ユーザー tabae326tabae326
提出日時 2021-10-08 22:17:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 201,280 KB
実行使用メモリ 11,468 KB
最終ジャッジ日時 2023-09-30 10:39:20
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,164 KB
testcase_01 AC 6 ms
11,060 KB
testcase_02 AC 6 ms
11,128 KB
testcase_03 AC 6 ms
11,128 KB
testcase_04 AC 6 ms
11,132 KB
testcase_05 AC 6 ms
11,212 KB
testcase_06 AC 6 ms
11,124 KB
testcase_07 AC 6 ms
11,188 KB
testcase_08 AC 6 ms
11,064 KB
testcase_09 AC 6 ms
11,060 KB
testcase_10 AC 6 ms
11,132 KB
testcase_11 AC 5 ms
11,144 KB
testcase_12 AC 5 ms
11,132 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 9 ms
11,248 KB
testcase_44 AC 9 ms
11,248 KB
testcase_45 AC 6 ms
11,164 KB
testcase_46 AC 6 ms
11,284 KB
testcase_47 AC 6 ms
11,248 KB
testcase_48 AC 6 ms
11,164 KB
testcase_49 AC 6 ms
11,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)
// Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac
#define dump(var)  do{std::cerr << #var << " : ";view(var);}while(0)
template<typename T> void view(T e){std::cerr << e << "\n";}
template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";}
template<typename T> void view(const std::vector<std::vector<T> >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } }
template<typename T> void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); }

#include <atcoder/modint>
using mint = atcoder::modint1000000007;

#define N 100010
mint dp[N][10][2];

void solve() {
    ll n;
    string s;
    cin >> n >> s;
    string t = "yukicoder";
    rep(i, 0, N) rep(j, 0, 10) rep(k, 0, 2) dp[i][j][k] = 0;
    dp[0][0][0] = 1;
    rep(i, 0, n) {
        rep(j, 0, 10) {
            rep(k, 0, 2) dp[i+1][j][k] += dp[i][j][k];
            if(s[i] == '?') dp[i+1][j+1][1] += dp[i][j][0];
        }
        rep(j, 0, 9) {
            if(s[i] == t[j]) {
                rep(k, 0, 2) dp[i+1][j+1][k] += dp[i][j][k];
            }
        }
    }
    mint ans = dp[n][9][0] + dp[n][9][1];
    cout << ans.val() << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0