結果

問題 No.1702 count good string
ユーザー mink1618033mink1618033
提出日時 2021-10-09 00:37:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 132,552 KB
最終ジャッジ日時 2024-07-23 09:20:18
合計ジャッジ時間 8,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,224 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 44 ms
59,404 KB
testcase_03 AC 45 ms
60,936 KB
testcase_04 AC 47 ms
62,304 KB
testcase_05 AC 45 ms
61,428 KB
testcase_06 AC 43 ms
61,432 KB
testcase_07 AC 46 ms
61,544 KB
testcase_08 AC 43 ms
61,024 KB
testcase_09 AC 47 ms
62,664 KB
testcase_10 AC 45 ms
62,156 KB
testcase_11 AC 50 ms
64,948 KB
testcase_12 AC 44 ms
61,120 KB
testcase_13 AC 257 ms
132,292 KB
testcase_14 AC 254 ms
132,420 KB
testcase_15 AC 264 ms
132,292 KB
testcase_16 AC 267 ms
132,304 KB
testcase_17 AC 259 ms
132,552 KB
testcase_18 AC 267 ms
132,292 KB
testcase_19 AC 282 ms
132,304 KB
testcase_20 AC 260 ms
132,552 KB
testcase_21 AC 286 ms
132,180 KB
testcase_22 AC 253 ms
132,516 KB
testcase_23 AC 53 ms
66,120 KB
testcase_24 AC 53 ms
66,492 KB
testcase_25 AC 53 ms
66,684 KB
testcase_26 AC 53 ms
66,564 KB
testcase_27 AC 56 ms
67,688 KB
testcase_28 AC 54 ms
66,952 KB
testcase_29 AC 54 ms
66,880 KB
testcase_30 AC 55 ms
66,864 KB
testcase_31 AC 56 ms
66,128 KB
testcase_32 AC 55 ms
66,372 KB
testcase_33 AC 251 ms
125,508 KB
testcase_34 AC 241 ms
125,232 KB
testcase_35 AC 249 ms
125,116 KB
testcase_36 AC 239 ms
125,244 KB
testcase_37 AC 238 ms
125,492 KB
testcase_38 AC 253 ms
125,244 KB
testcase_39 AC 250 ms
125,240 KB
testcase_40 AC 238 ms
125,368 KB
testcase_41 AC 251 ms
125,364 KB
testcase_42 AC 251 ms
125,752 KB
testcase_43 AC 253 ms
132,408 KB
testcase_44 AC 265 ms
132,504 KB
testcase_45 AC 38 ms
54,604 KB
testcase_46 AC 38 ms
52,820 KB
testcase_47 AC 38 ms
52,768 KB
testcase_48 AC 37 ms
52,884 KB
testcase_49 AC 37 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
if n<9:
    print(0)
    sys.exit()
s = input()
p = 10**9+7
ans = 0
keys = []
key = list("yukicoder")
keys.append({'y': 0, 'u': 1, 'k': 2, 'i': 3, 'c': 4, 'o': 5, 'd': 6, 'e': 7, 'r': 8})
for k in range(9):
    di = {}
    for kk in range(9):
        if k==kk:
            di["?"]=kk
        else:
            di[key[kk]]=kk
    keys.append(di)
    #print(di)

for di in keys:
    dp = [[0]*(n+1) for _ in range(9)]
    for i in range(n):
        if s[i] in di:
            ind = di[s[i]]
        else:
            ind = 9
        for j in range(9):
            if j==ind:
                if j==0:
                    dp[j][i+1]=(dp[j][i]+1)%p
                else:
                    dp[j][i+1]=(dp[j][i]+dp[j-1][i])%p
            else:
                dp[j][i+1]=(dp[j][i])%p
    ans+=dp[8][n]%p
    #print(ans)
print(ans%p)
0