結果

問題 No.1702 count good string
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-09 17:37:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 76,912 KB
最終ジャッジ日時 2024-09-13 03:39:23
合計ジャッジ時間 4,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,544 KB
testcase_01 AC 40 ms
52,356 KB
testcase_02 AC 39 ms
52,360 KB
testcase_03 AC 40 ms
52,520 KB
testcase_04 AC 39 ms
53,292 KB
testcase_05 AC 40 ms
53,916 KB
testcase_06 AC 40 ms
53,024 KB
testcase_07 AC 40 ms
53,320 KB
testcase_08 AC 40 ms
52,696 KB
testcase_09 AC 40 ms
52,936 KB
testcase_10 AC 40 ms
53,100 KB
testcase_11 AC 40 ms
53,760 KB
testcase_12 AC 40 ms
52,068 KB
testcase_13 AC 101 ms
76,436 KB
testcase_14 AC 97 ms
76,532 KB
testcase_15 AC 100 ms
76,768 KB
testcase_16 AC 94 ms
76,736 KB
testcase_17 AC 94 ms
76,652 KB
testcase_18 AC 99 ms
76,804 KB
testcase_19 AC 98 ms
76,704 KB
testcase_20 AC 96 ms
76,416 KB
testcase_21 AC 99 ms
76,912 KB
testcase_22 AC 98 ms
76,752 KB
testcase_23 AC 41 ms
53,996 KB
testcase_24 AC 40 ms
53,236 KB
testcase_25 AC 40 ms
53,944 KB
testcase_26 AC 41 ms
52,548 KB
testcase_27 AC 41 ms
53,668 KB
testcase_28 AC 40 ms
53,188 KB
testcase_29 AC 40 ms
52,840 KB
testcase_30 AC 39 ms
53,144 KB
testcase_31 AC 39 ms
53,284 KB
testcase_32 AC 41 ms
52,388 KB
testcase_33 AC 85 ms
76,584 KB
testcase_34 AC 86 ms
76,452 KB
testcase_35 AC 89 ms
76,616 KB
testcase_36 AC 86 ms
76,700 KB
testcase_37 AC 86 ms
76,532 KB
testcase_38 AC 86 ms
76,564 KB
testcase_39 AC 88 ms
76,528 KB
testcase_40 AC 86 ms
76,532 KB
testcase_41 AC 86 ms
76,568 KB
testcase_42 AC 86 ms
76,548 KB
testcase_43 AC 72 ms
75,872 KB
testcase_44 AC 94 ms
76,476 KB
testcase_45 AC 39 ms
53,072 KB
testcase_46 AC 40 ms
52,404 KB
testcase_47 AC 39 ms
52,144 KB
testcase_48 AC 39 ms
52,864 KB
testcase_49 AC 39 ms
53,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = str(input())

d = {'y':0, 'u':1, 'k':2, 'i':3, 'c':4, 'o':5, 'd':6, 'e':7, 'r':8}
mod = 10**9+7

dp = [[0, 0] for i in range(9)]
for c in s:
    if c in d:
        j = d[c]
        if j == 0:
            dp[0][0] += 1
        else:
            dp[j][0] += dp[j-1][0]
            dp[j][0] += mod
            dp[j][1] += dp[j-1][1]
            dp[j][1] += mod
    elif c == '?':
        dp[0][1] += 1
        for j in reversed(range(1, 9)):
            dp[j][1] += dp[j-1][0]
            dp[j][1] += mod
ans = dp[8][0]+dp[8][1]
print(ans%mod)
0