結果

問題 No.1702 count good string
ユーザー chineristACchineristAC
提出日時 2021-10-08 22:11:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-07-23 04:35:08
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,680 KB
testcase_01 AC 47 ms
55,552 KB
testcase_02 AC 44 ms
55,552 KB
testcase_03 AC 47 ms
61,824 KB
testcase_04 AC 47 ms
61,824 KB
testcase_05 AC 48 ms
62,080 KB
testcase_06 AC 49 ms
61,696 KB
testcase_07 AC 48 ms
61,568 KB
testcase_08 AC 47 ms
61,568 KB
testcase_09 AC 48 ms
62,080 KB
testcase_10 AC 52 ms
61,568 KB
testcase_11 AC 49 ms
61,824 KB
testcase_12 AC 49 ms
61,824 KB
testcase_13 AC 93 ms
77,312 KB
testcase_14 AC 95 ms
77,292 KB
testcase_15 AC 96 ms
77,328 KB
testcase_16 AC 95 ms
77,312 KB
testcase_17 AC 95 ms
77,376 KB
testcase_18 AC 102 ms
77,440 KB
testcase_19 AC 93 ms
77,568 KB
testcase_20 AC 95 ms
77,568 KB
testcase_21 AC 93 ms
77,320 KB
testcase_22 AC 93 ms
77,312 KB
testcase_23 AC 55 ms
66,944 KB
testcase_24 AC 56 ms
66,944 KB
testcase_25 AC 57 ms
67,072 KB
testcase_26 AC 56 ms
67,072 KB
testcase_27 AC 57 ms
67,072 KB
testcase_28 AC 55 ms
66,944 KB
testcase_29 AC 56 ms
67,072 KB
testcase_30 AC 55 ms
67,072 KB
testcase_31 AC 55 ms
66,944 KB
testcase_32 AC 56 ms
67,328 KB
testcase_33 AC 93 ms
77,548 KB
testcase_34 AC 92 ms
77,460 KB
testcase_35 AC 91 ms
77,384 KB
testcase_36 AC 92 ms
77,312 KB
testcase_37 AC 91 ms
77,504 KB
testcase_38 AC 91 ms
77,568 KB
testcase_39 AC 98 ms
77,184 KB
testcase_40 AC 92 ms
77,312 KB
testcase_41 AC 91 ms
77,184 KB
testcase_42 AC 91 ms
77,184 KB
testcase_43 AC 91 ms
77,184 KB
testcase_44 AC 95 ms
77,312 KB
testcase_45 AC 45 ms
56,192 KB
testcase_46 AC 44 ms
55,936 KB
testcase_47 AC 43 ms
56,064 KB
testcase_48 AC 45 ms
55,808 KB
testcase_49 AC 45 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

N = int(input())
S = input()

T = "yukicoder"

dp = [0 for i in range(2*len(T)+2)]
dp[0] = 1
for i in range(N):
    ndp = [x for x in dp]
    for j in range(len(T)):
        if S[i]==T[j]:
            ndp[2*j+2] += dp[2*j]
            ndp[2*j+2] %= mod

            ndp[2*j+3] += dp[2*j+1]
            ndp[2*j+3] %= mod
        
        elif S[i]=="?":
            ndp[2*j+3] += dp[2*j]
            ndp[2*j+3] %= mod
    
    dp = ndp

res = dp[2*len(T)] + dp[2*len(T)+1]
print(res % mod)


0