結果

問題 No.1702 count good string
ユーザー mink1618033mink1618033
提出日時 2021-10-08 23:53:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 855 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 132,560 KB
最終ジャッジ日時 2024-07-23 08:24:10
合計ジャッジ時間 8,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,888 KB
testcase_01 AC 38 ms
52,892 KB
testcase_02 AC 39 ms
59,152 KB
testcase_03 AC 45 ms
61,692 KB
testcase_04 AC 46 ms
63,068 KB
testcase_05 AC 44 ms
62,068 KB
testcase_06 AC 45 ms
60,908 KB
testcase_07 AC 43 ms
61,088 KB
testcase_08 AC 43 ms
61,740 KB
testcase_09 AC 47 ms
62,004 KB
testcase_10 AC 48 ms
62,704 KB
testcase_11 AC 49 ms
64,080 KB
testcase_12 AC 44 ms
62,396 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 54 ms
67,076 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 53 ms
66,628 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 249 ms
132,292 KB
testcase_44 AC 261 ms
132,372 KB
testcase_45 AC 37 ms
52,272 KB
testcase_46 AC 36 ms
52,396 KB
testcase_47 AC 37 ms
52,200 KB
testcase_48 AC 36 ms
53,040 KB
testcase_49 AC 35 ms
52,128 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)
0