結果

問題 No.1702 count good string
ユーザー nebukuro09nebukuro09
提出日時 2021-10-08 22:12:39
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 116,232 KB
実行使用メモリ 56,600 KB
最終ジャッジ日時 2024-06-22 12:44:16
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 157 ms
54,428 KB
testcase_14 AC 155 ms
56,152 KB
testcase_15 AC 157 ms
54,548 KB
testcase_16 AC 155 ms
54,556 KB
testcase_17 AC 154 ms
54,580 KB
testcase_18 AC 154 ms
55,744 KB
testcase_19 AC 158 ms
54,880 KB
testcase_20 AC 162 ms
54,364 KB
testcase_21 AC 158 ms
54,360 KB
testcase_22 AC 153 ms
55,824 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 3 ms
6,948 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 153 ms
56,288 KB
testcase_34 AC 156 ms
54,352 KB
testcase_35 AC 152 ms
56,060 KB
testcase_36 AC 157 ms
56,012 KB
testcase_37 AC 154 ms
56,096 KB
testcase_38 AC 152 ms
56,224 KB
testcase_39 AC 152 ms
56,384 KB
testcase_40 AC 154 ms
55,016 KB
testcase_41 AC 160 ms
56,600 KB
testcase_42 AC 157 ms
54,384 KB
testcase_43 AC 153 ms
55,024 KB
testcase_44 AC 153 ms
54,456 KB
testcase_45 AC 1 ms
6,940 KB
testcase_46 AC 1 ms
6,944 KB
testcase_47 AC 1 ms
6,940 KB
testcase_48 AC 1 ms
6,940 KB
testcase_49 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto S = readln.chomp;
    auto yukicoder = "yukicoder";

    auto dp = new long[][][](N+1, 10, 2);
    dp[0][0][0] = 1;

    foreach (i; 0..N) foreach (j; 0..10) foreach (k; 0..2) {
        (dp[i+1][j][k] += dp[i][j][k]) %= MOD;
        if (j == 9) continue;
        if (k == 0 && S[i] == '?') {
            (dp[i+1][j+1][1] += dp[i][j][k]) %= MOD;
        }
        if (S[i] == yukicoder[j]) {
            (dp[i+1][j+1][k] += dp[i][j][k]) %= MOD;
        }
    }

    writeln(dp[N][9].sum % MOD);
}
0