結果

問題 No.1702 count good string
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 22:19:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-07-23 04:50:40
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,348 KB
testcase_01 AC 39 ms
52,128 KB
testcase_02 AC 40 ms
52,196 KB
testcase_03 AC 40 ms
53,288 KB
testcase_04 AC 39 ms
52,888 KB
testcase_05 AC 39 ms
54,484 KB
testcase_06 AC 39 ms
53,020 KB
testcase_07 AC 39 ms
53,168 KB
testcase_08 AC 39 ms
53,016 KB
testcase_09 AC 39 ms
52,404 KB
testcase_10 AC 38 ms
53,476 KB
testcase_11 AC 40 ms
53,368 KB
testcase_12 AC 39 ms
52,528 KB
testcase_13 AC 74 ms
74,008 KB
testcase_14 AC 71 ms
73,788 KB
testcase_15 AC 71 ms
73,772 KB
testcase_16 AC 69 ms
74,752 KB
testcase_17 AC 70 ms
73,712 KB
testcase_18 AC 71 ms
73,796 KB
testcase_19 AC 71 ms
73,896 KB
testcase_20 AC 71 ms
74,132 KB
testcase_21 AC 70 ms
73,992 KB
testcase_22 AC 71 ms
74,196 KB
testcase_23 AC 46 ms
60,244 KB
testcase_24 AC 46 ms
62,280 KB
testcase_25 AC 47 ms
61,768 KB
testcase_26 AC 47 ms
61,188 KB
testcase_27 AC 48 ms
60,936 KB
testcase_28 AC 46 ms
59,872 KB
testcase_29 AC 45 ms
59,220 KB
testcase_30 AC 47 ms
60,756 KB
testcase_31 AC 43 ms
59,080 KB
testcase_32 AC 46 ms
60,196 KB
testcase_33 AC 64 ms
72,600 KB
testcase_34 AC 64 ms
74,256 KB
testcase_35 AC 66 ms
73,920 KB
testcase_36 AC 64 ms
72,640 KB
testcase_37 AC 68 ms
73,424 KB
testcase_38 AC 64 ms
72,956 KB
testcase_39 AC 67 ms
74,264 KB
testcase_40 AC 64 ms
72,600 KB
testcase_41 AC 66 ms
72,872 KB
testcase_42 AC 65 ms
72,756 KB
testcase_43 AC 66 ms
73,772 KB
testcase_44 AC 78 ms
76,236 KB
testcase_45 AC 39 ms
53,016 KB
testcase_46 AC 39 ms
52,920 KB
testcase_47 AC 39 ms
53,012 KB
testcase_48 AC 39 ms
53,468 KB
testcase_49 AC 39 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
dp = [[0]*2 for i in range(10)]
dp[0][0] = 1
mod = 10**9+7
t = list("yukicoder")
for s in S:
    if s not in t and s != "?":
        continue
    
    for j in range(9)[::-1]:
        if s == t[j]:
            dp[j+1][0] += dp[j][0]
            dp[j+1][1] += dp[j][1]
            dp[j+1][0] %= mod
            dp[j+1][1] %= mod
        if s == "?":
            dp[j+1][1] += dp[j][0]
            dp[j+1][1] %= mod
print(sum(dp[-1])%mod)
0