結果

問題 No.1702 count good string
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 22:15:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 76,460 KB
最終ジャッジ日時 2024-07-23 04:44:33
合計ジャッジ時間 7,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 45 ms
61,952 KB
testcase_04 AC 45 ms
61,056 KB
testcase_05 AC 48 ms
61,184 KB
testcase_06 AC 46 ms
61,824 KB
testcase_07 AC 50 ms
61,568 KB
testcase_08 AC 45 ms
61,312 KB
testcase_09 AC 44 ms
61,440 KB
testcase_10 AC 46 ms
61,568 KB
testcase_11 AC 45 ms
61,312 KB
testcase_12 AC 46 ms
61,696 KB
testcase_13 AC 223 ms
76,288 KB
testcase_14 AC 226 ms
76,460 KB
testcase_15 AC 232 ms
76,288 KB
testcase_16 AC 232 ms
76,160 KB
testcase_17 AC 231 ms
76,160 KB
testcase_18 AC 226 ms
76,168 KB
testcase_19 AC 222 ms
76,400 KB
testcase_20 AC 230 ms
76,460 KB
testcase_21 AC 226 ms
76,212 KB
testcase_22 AC 230 ms
76,160 KB
testcase_23 AC 65 ms
76,032 KB
testcase_24 AC 63 ms
75,900 KB
testcase_25 AC 64 ms
76,160 KB
testcase_26 AC 62 ms
75,908 KB
testcase_27 AC 63 ms
76,160 KB
testcase_28 AC 62 ms
76,288 KB
testcase_29 AC 62 ms
75,904 KB
testcase_30 AC 60 ms
76,032 KB
testcase_31 AC 62 ms
75,904 KB
testcase_32 AC 62 ms
75,904 KB
testcase_33 AC 226 ms
76,032 KB
testcase_34 AC 223 ms
76,320 KB
testcase_35 AC 218 ms
76,416 KB
testcase_36 AC 225 ms
76,288 KB
testcase_37 AC 225 ms
76,336 KB
testcase_38 AC 228 ms
76,160 KB
testcase_39 AC 221 ms
76,176 KB
testcase_40 AC 222 ms
76,288 KB
testcase_41 AC 220 ms
76,304 KB
testcase_42 AC 210 ms
76,144 KB
testcase_43 AC 238 ms
76,416 KB
testcase_44 AC 233 ms
76,092 KB
testcase_45 AC 38 ms
52,480 KB
testcase_46 AC 35 ms
52,608 KB
testcase_47 AC 37 ms
52,864 KB
testcase_48 AC 37 ms
52,096 KB
testcase_49 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""
from sys import stdin
import sys

yuki = "yukicoder"

N = int(stdin.readline())

S = stdin.readline()[:-1]

dp = [ [0] * 2 for i in range(len(yuki)+1)]
dp[0][0] = 1

mod = 10**9+7

for i in range(N):

    ndp = [ [dp[a][j] for j in range(2)]  for a in range(len(yuki)+1)]

    for a in range(len(yuki)):
        for b in range(2):

            if yuki[a] == S[i]:
                ndp[a+1][b] += dp[a][b]
                ndp[a+1][b] %= mod
            elif b == 0 and S[i] == "?":
                ndp[a+1][1] += dp[a][0]
                ndp[a+1][1] %= mod

    dp = ndp

ans = 0
for i in range(2):
    ans += dp[-1][i]
print (ans % mod)
0