結果

問題 No.1702 count good string
ユーザー tassei903tassei903
提出日時 2021-10-08 22:32:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 824 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 229,760 KB
最終ジャッジ日時 2024-07-23 05:30:25
合計ジャッジ時間 19,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 46 ms
60,928 KB
testcase_03 AC 55 ms
65,024 KB
testcase_04 AC 57 ms
65,280 KB
testcase_05 AC 57 ms
64,452 KB
testcase_06 AC 53 ms
64,384 KB
testcase_07 AC 53 ms
64,640 KB
testcase_08 AC 54 ms
64,512 KB
testcase_09 AC 55 ms
65,408 KB
testcase_10 AC 58 ms
64,896 KB
testcase_11 AC 64 ms
68,864 KB
testcase_12 AC 53 ms
64,512 KB
testcase_13 AC 718 ms
229,532 KB
testcase_14 AC 725 ms
229,504 KB
testcase_15 AC 733 ms
229,248 KB
testcase_16 AC 720 ms
229,632 KB
testcase_17 AC 709 ms
229,352 KB
testcase_18 AC 732 ms
229,376 KB
testcase_19 AC 743 ms
229,504 KB
testcase_20 AC 725 ms
229,504 KB
testcase_21 AC 824 ms
229,376 KB
testcase_22 AC 726 ms
229,632 KB
testcase_23 AC 83 ms
76,928 KB
testcase_24 AC 88 ms
76,672 KB
testcase_25 AC 86 ms
77,036 KB
testcase_26 AC 83 ms
77,440 KB
testcase_27 AC 103 ms
76,672 KB
testcase_28 AC 82 ms
76,800 KB
testcase_29 AC 80 ms
76,928 KB
testcase_30 AC 77 ms
77,184 KB
testcase_31 AC 78 ms
76,928 KB
testcase_32 AC 80 ms
76,800 KB
testcase_33 AC 689 ms
229,632 KB
testcase_34 AC 695 ms
229,504 KB
testcase_35 AC 704 ms
229,632 KB
testcase_36 AC 692 ms
229,248 KB
testcase_37 AC 686 ms
229,120 KB
testcase_38 AC 693 ms
229,632 KB
testcase_39 AC 705 ms
229,504 KB
testcase_40 AC 723 ms
229,376 KB
testcase_41 AC 714 ms
229,760 KB
testcase_42 AC 713 ms
229,376 KB
testcase_43 AC 706 ms
229,120 KB
testcase_44 AC 707 ms
229,120 KB
testcase_45 AC 41 ms
57,856 KB
testcase_46 AC 42 ms
57,600 KB
testcase_47 AC 43 ms
57,088 KB
testcase_48 AC 42 ms
57,984 KB
testcase_49 AC 42 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
N = ni()
S = list(input())
s = "yukicoder"
s = list(s)
p = [s]
for i in range(9):
    z = s.copy()
    z[i] = "?"
    p.append(z)
    

ans= 0
mod = 10**9+7
for _ in range(10):
    z = p[_]
    dp = [[0 for i in range(len(z)+1)] for i in range(N+1)]
    dp[0][0]=1

    for i in range(N):
        for j in range(len(z)+1):
            dp[i+1][j]+=dp[i][j]
            dp[i+1][j]%=mod
        for j in range(len(z)):
            if S[i]==z[j]:
                dp[i+1][j+1]+=dp[i][j]
                dp[i+1][j+1]%=mod
    ans += dp[-1][-1]
    ans %= mod
    #print(z)
    #print(dp,"\n")
print(ans)
0