結果

問題 No.1702 count good string
ユーザー H20H20
提出日時 2021-10-08 23:08:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 165,380 KB
最終ジャッジ日時 2024-07-23 06:40:20
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,432 KB
testcase_01 AC 37 ms
53,368 KB
testcase_02 AC 36 ms
52,196 KB
testcase_03 AC 39 ms
54,020 KB
testcase_04 AC 39 ms
55,120 KB
testcase_05 AC 39 ms
53,972 KB
testcase_06 AC 38 ms
54,104 KB
testcase_07 AC 40 ms
54,116 KB
testcase_08 AC 40 ms
54,640 KB
testcase_09 AC 40 ms
54,356 KB
testcase_10 AC 40 ms
54,792 KB
testcase_11 AC 39 ms
55,064 KB
testcase_12 AC 39 ms
53,548 KB
testcase_13 AC 257 ms
165,380 KB
testcase_14 AC 249 ms
165,224 KB
testcase_15 AC 250 ms
164,964 KB
testcase_16 AC 251 ms
165,040 KB
testcase_17 AC 252 ms
165,056 KB
testcase_18 AC 256 ms
165,052 KB
testcase_19 AC 258 ms
164,916 KB
testcase_20 AC 254 ms
165,160 KB
testcase_21 AC 254 ms
164,884 KB
testcase_22 AC 255 ms
165,128 KB
testcase_23 AC 50 ms
64,240 KB
testcase_24 AC 51 ms
64,696 KB
testcase_25 AC 50 ms
63,668 KB
testcase_26 AC 51 ms
65,328 KB
testcase_27 AC 51 ms
64,184 KB
testcase_28 AC 53 ms
64,628 KB
testcase_29 AC 51 ms
64,196 KB
testcase_30 AC 52 ms
64,692 KB
testcase_31 AC 51 ms
64,736 KB
testcase_32 AC 52 ms
65,108 KB
testcase_33 AC 257 ms
164,944 KB
testcase_34 AC 253 ms
164,956 KB
testcase_35 AC 256 ms
165,224 KB
testcase_36 AC 256 ms
164,892 KB
testcase_37 AC 263 ms
164,852 KB
testcase_38 AC 256 ms
165,112 KB
testcase_39 AC 254 ms
164,940 KB
testcase_40 AC 252 ms
164,892 KB
testcase_41 AC 253 ms
165,216 KB
testcase_42 AC 252 ms
165,212 KB
testcase_43 AC 247 ms
165,028 KB
testcase_44 AC 248 ms
165,368 KB
testcase_45 AC 38 ms
53,196 KB
testcase_46 AC 37 ms
53,096 KB
testcase_47 AC 36 ms
52,944 KB
testcase_48 AC 38 ms
53,512 KB
testcase_49 AC 37 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = 'yukicoder'
mod = 10**9+7
DP = [[[0] * 2 for _ in range(N+1)] for _ in range(10)]
for i in range(N+1):
    DP[0][i][0]=1

for i in range(9):
    for j in range(N):
        if S[j]==T[i]:
            DP[i+1][j+1][0]=(DP[i+1][j+1][0]+DP[i][j][0])%mod
            DP[i+1][j+1][1]=(DP[i+1][j+1][1]+DP[i][j][1])%mod
        if S[j]=='?':
            DP[i+1][j+1][1]=(DP[i+1][j+1][1]+DP[i][j][0])%mod

    for j in range(N):
        DP[i+1][j+1][0]=(DP[i+1][j+1][0]+DP[i+1][j][0])%mod
        DP[i+1][j+1][1]=(DP[i+1][j+1][1]+DP[i+1][j][1])%mod

print(sum(DP[-1][-1])%mod)
0