#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint1000000007; using vm = vector; int main() { lint N; string S; cin >> N >> S; mint a=0, b=0, c=0, x, y, z; rep(t, 10) { string s = "yukicoder"; if (t < s.size()) s[t] = '?'; std::vector dp(N+1, vm(10)); dp[0][0] = 1; rep(i, N) { rep(j, 10) { dp[i+1][j] += dp[i][j]; if (j < 9) { if (S[i] == s[j]) dp[i+1][j+1] += dp[i][j]; } } } a += dp[N][9]; } std::cout << a.val() << '\n'; }