結果

問題 No.1702 count good string
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 22:21:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 71,588 KB
最終ジャッジ日時 2024-07-23 04:52:43
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 40 ms
52,664 KB
testcase_02 AC 39 ms
52,408 KB
testcase_03 AC 39 ms
52,816 KB
testcase_04 AC 39 ms
52,836 KB
testcase_05 AC 40 ms
53,820 KB
testcase_06 AC 38 ms
53,048 KB
testcase_07 AC 38 ms
53,484 KB
testcase_08 AC 40 ms
52,744 KB
testcase_09 AC 40 ms
52,496 KB
testcase_10 AC 39 ms
52,752 KB
testcase_11 AC 39 ms
53,840 KB
testcase_12 AC 39 ms
53,744 KB
testcase_13 AC 59 ms
70,876 KB
testcase_14 AC 58 ms
70,204 KB
testcase_15 AC 60 ms
70,540 KB
testcase_16 AC 58 ms
70,152 KB
testcase_17 AC 59 ms
69,292 KB
testcase_18 AC 57 ms
69,060 KB
testcase_19 AC 62 ms
70,716 KB
testcase_20 AC 58 ms
69,536 KB
testcase_21 AC 59 ms
69,980 KB
testcase_22 AC 62 ms
71,588 KB
testcase_23 AC 40 ms
54,040 KB
testcase_24 AC 40 ms
52,660 KB
testcase_25 AC 40 ms
53,660 KB
testcase_26 AC 40 ms
53,244 KB
testcase_27 AC 40 ms
54,288 KB
testcase_28 AC 40 ms
52,264 KB
testcase_29 AC 40 ms
53,496 KB
testcase_30 AC 39 ms
53,760 KB
testcase_31 AC 39 ms
53,212 KB
testcase_32 AC 40 ms
53,224 KB
testcase_33 AC 60 ms
70,232 KB
testcase_34 AC 58 ms
69,808 KB
testcase_35 AC 58 ms
69,736 KB
testcase_36 AC 58 ms
70,152 KB
testcase_37 AC 60 ms
69,876 KB
testcase_38 AC 59 ms
70,084 KB
testcase_39 AC 60 ms
70,008 KB
testcase_40 AC 64 ms
71,096 KB
testcase_41 AC 59 ms
70,776 KB
testcase_42 AC 59 ms
70,420 KB
testcase_43 AC 52 ms
68,580 KB
testcase_44 AC 61 ms
71,032 KB
testcase_45 AC 40 ms
52,752 KB
testcase_46 AC 39 ms
53,404 KB
testcase_47 AC 39 ms
52,736 KB
testcase_48 AC 39 ms
53,196 KB
testcase_49 AC 39 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
MOD = 10**9+7
T = 'yukicoder'
U = set(list(T))
dp = [[0]*3 for _ in range(10)]
dp[0][0] = 1

for s in S:
    if s == '?':
        for i in range(9, 0, -1):
            dp[i][1] += dp[i-1][0]
            dp[i][1] %= MOD
    elif s in U:
        i = T.index(s)
        dp[i+1][0] += dp[i][0]
        dp[i+1][0] %= MOD
        dp[i+1][2] += dp[i][1]+dp[i][2]
        dp[i+1][2] %= MOD

print(sum(dp[-1]) % MOD)
0