結果

問題 No.1702 count good string
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:52:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,696 KB
最終ジャッジ日時 2024-07-23 06:01:48
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,004 KB
testcase_01 AC 38 ms
52,696 KB
testcase_02 AC 41 ms
60,312 KB
testcase_03 AC 48 ms
63,552 KB
testcase_04 AC 49 ms
63,244 KB
testcase_05 AC 47 ms
63,312 KB
testcase_06 AC 48 ms
62,768 KB
testcase_07 AC 47 ms
62,068 KB
testcase_08 AC 47 ms
63,032 KB
testcase_09 AC 48 ms
63,328 KB
testcase_10 AC 48 ms
63,824 KB
testcase_11 AC 52 ms
64,460 KB
testcase_12 AC 47 ms
62,616 KB
testcase_13 AC 281 ms
76,284 KB
testcase_14 AC 276 ms
76,036 KB
testcase_15 AC 276 ms
76,316 KB
testcase_16 AC 270 ms
76,260 KB
testcase_17 AC 277 ms
76,272 KB
testcase_18 AC 273 ms
76,696 KB
testcase_19 AC 364 ms
76,444 KB
testcase_20 AC 280 ms
76,252 KB
testcase_21 AC 368 ms
76,432 KB
testcase_22 AC 272 ms
76,104 KB
testcase_23 AC 57 ms
73,640 KB
testcase_24 AC 58 ms
72,700 KB
testcase_25 AC 56 ms
72,752 KB
testcase_26 AC 55 ms
72,844 KB
testcase_27 AC 55 ms
72,596 KB
testcase_28 AC 55 ms
73,640 KB
testcase_29 AC 55 ms
72,348 KB
testcase_30 AC 54 ms
72,724 KB
testcase_31 AC 55 ms
72,592 KB
testcase_32 AC 54 ms
72,636 KB
testcase_33 AC 258 ms
75,984 KB
testcase_34 AC 265 ms
76,272 KB
testcase_35 AC 258 ms
76,044 KB
testcase_36 AC 255 ms
76,060 KB
testcase_37 AC 258 ms
76,060 KB
testcase_38 AC 259 ms
76,088 KB
testcase_39 AC 266 ms
76,356 KB
testcase_40 AC 261 ms
76,300 KB
testcase_41 AC 259 ms
76,256 KB
testcase_42 AC 260 ms
76,188 KB
testcase_43 AC 268 ms
76,260 KB
testcase_44 AC 265 ms
76,312 KB
testcase_45 AC 38 ms
52,604 KB
testcase_46 AC 38 ms
53,840 KB
testcase_47 AC 39 ms
54,548 KB
testcase_48 AC 37 ms
53,164 KB
testcase_49 AC 38 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
S=readline().rstrip()
lst=["yukicoder"]
for i in range(9):
    s="yukicoder"
    s=s[:i]+"?"+s[i+1:]
    lst.append(s)
mod=10**9+7
ans=0
for ss in lst:
    dp=[0]*10
    dp[0]=1
    for s in S:
        prev=dp
        dp=[x for x in dp]
        for i in range(9):
            if ss[i]==s:
                dp[i+1]+=prev[i]
                dp[i+1]%=mod
    ans+=dp[9]
    ans%=mod
print(ans)
0