結果

問題 No.1702 count good string
ユーザー simansiman
提出日時 2023-02-23 09:56:09
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 141,884 KB
実行使用メモリ 11,556 KB
最終ジャッジ日時 2024-07-23 07:23:39
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 27 ms
11,404 KB
testcase_14 AC 26 ms
11,312 KB
testcase_15 AC 26 ms
11,388 KB
testcase_16 AC 28 ms
11,392 KB
testcase_17 AC 27 ms
11,364 KB
testcase_18 AC 27 ms
11,504 KB
testcase_19 AC 27 ms
11,408 KB
testcase_20 AC 29 ms
11,312 KB
testcase_21 AC 28 ms
11,308 KB
testcase_22 AC 27 ms
11,304 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 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 2 ms
6,940 KB
testcase_33 AC 20 ms
11,420 KB
testcase_34 AC 20 ms
11,332 KB
testcase_35 AC 20 ms
11,368 KB
testcase_36 AC 20 ms
11,316 KB
testcase_37 AC 20 ms
11,428 KB
testcase_38 AC 20 ms
11,320 KB
testcase_39 AC 20 ms
11,312 KB
testcase_40 AC 20 ms
11,348 KB
testcase_41 AC 20 ms
11,376 KB
testcase_42 AC 20 ms
11,320 KB
testcase_43 AC 20 ms
11,556 KB
testcase_44 AC 23 ms
11,388 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const ll MOD = 1000000007;
int N;
string S;

ll solver(string T) {
  ll dp[N + 1][10];
  memset(dp, 0, sizeof(dp));
  dp[0][0] = 1;

  for (int i = 1; i <= N; ++i) {
    char ch = S[i - 1];

    memcpy(dp[i], dp[i - 1], sizeof(dp[i]));

    for (int j = 1; j <= 9; ++j) {
      if (ch != T[j - 1]) continue;

      dp[i][j] += dp[i - 1][j - 1];
      dp[i][j] %= MOD;
    }
  }

  return dp[N][9];
}

int main() {
  cin >> N;
  cin >> S;
  string T = "yukicoder";

  ll ans = 0;
  ans += solver(T);

  for (int i = 0; i < 9; ++i) {
    string str = T;
    str[i] = '?';
    ans += solver(str);
    ans %= MOD;
  }

  cout << ans << endl;

  return 0;
}
0