結果

問題 No.1702 count good string
ユーザー bit_kyoprobit_kyopro
提出日時 2021-10-08 22:52:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 205,656 KB
実行使用メモリ 10,540 KB
最終ジャッジ日時 2024-07-23 06:03:11
合計ジャッジ時間 6,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 123 ms
10,536 KB
testcase_14 AC 124 ms
10,412 KB
testcase_15 AC 125 ms
10,408 KB
testcase_16 AC 121 ms
10,372 KB
testcase_17 AC 121 ms
10,404 KB
testcase_18 AC 123 ms
10,408 KB
testcase_19 AC 126 ms
10,500 KB
testcase_20 AC 124 ms
10,532 KB
testcase_21 AC 123 ms
10,408 KB
testcase_22 AC 127 ms
10,408 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 120 ms
10,536 KB
testcase_34 AC 121 ms
10,404 KB
testcase_35 AC 114 ms
10,408 KB
testcase_36 AC 115 ms
10,408 KB
testcase_37 AC 119 ms
10,536 KB
testcase_38 AC 117 ms
10,540 KB
testcase_39 AC 116 ms
10,412 KB
testcase_40 AC 117 ms
10,536 KB
testcase_41 AC 119 ms
10,536 KB
testcase_42 AC 119 ms
10,412 KB
testcase_43 AC 106 ms
10,536 KB
testcase_44 AC 113 ms
10,412 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;


int main() {
    int n; cin >> n;
    int mod = 1000000007;
    string s; cin >> s;
    string y = "yukicoder";
    string t = "yukicoder";
    int m = y.size();
    long long ans = 0;
    for (int k=0; k<10; k++) {
        vector<vector<int>> dp(n+1, vector<int>(m+1, 0));
        for (int i=0; i<=n; i++) {
            for (int j=0; j<=m; j++) {
                if (j == 0) {
                    dp[i][j] = 1;
                    continue;
                }
                if (i == 0) {
                    dp[i][j] = 0;
                    continue;
                }
                dp[i][j] += dp[i-1][j];
                if (s[i-1] == y[j-1]) {
                    dp[i][j] += dp[i-1][j-1];
                }
                dp[i][j] %= mod;
            }
        }
    
        ans += dp[n][m];
        ans %= mod;

        y[k] = '?';
        if (k) y[k-1] = t[k-1];
       
    }
    cout << ans << endl;
}
0