n=int(input()) s=input() t="yukicoder" m=len(t) M=10**9+7 q=[[0]*(m+1),[0]*(m+1)] q[0][0]=1 for c in s: for i in reversed(range(m)): if c==t[i]: q[0][i+1]+=q[0][i] q[0][i+1]%=M q[1][i+1]+=q[1][i] q[1][i+1]%=M if c=="?": q[1][i+1]+=q[0][i] q[1][i+1]%=M print((q[0][m]+q[1][m])%M)