結果

問題 No.1702 count good string
ユーザー lloyzlloyz
提出日時 2021-11-14 16:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 175,176 KB
最終ジャッジ日時 2024-05-07 05:56:46
合計ジャッジ時間 14,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 56 ms
64,384 KB
testcase_04 AC 55 ms
64,128 KB
testcase_05 AC 55 ms
64,256 KB
testcase_06 AC 55 ms
64,384 KB
testcase_07 AC 57 ms
64,256 KB
testcase_08 AC 56 ms
64,256 KB
testcase_09 AC 55 ms
64,128 KB
testcase_10 AC 55 ms
64,128 KB
testcase_11 AC 56 ms
64,256 KB
testcase_12 AC 56 ms
64,000 KB
testcase_13 AC 483 ms
174,532 KB
testcase_14 AC 478 ms
174,788 KB
testcase_15 AC 483 ms
174,660 KB
testcase_16 AC 484 ms
174,764 KB
testcase_17 AC 486 ms
174,796 KB
testcase_18 AC 478 ms
174,912 KB
testcase_19 AC 482 ms
175,016 KB
testcase_20 AC 479 ms
174,792 KB
testcase_21 AC 487 ms
174,912 KB
testcase_22 AC 486 ms
174,896 KB
testcase_23 AC 80 ms
77,456 KB
testcase_24 AC 81 ms
77,312 KB
testcase_25 AC 79 ms
77,568 KB
testcase_26 AC 79 ms
77,184 KB
testcase_27 AC 81 ms
77,184 KB
testcase_28 AC 78 ms
77,696 KB
testcase_29 AC 81 ms
77,476 KB
testcase_30 AC 79 ms
77,184 KB
testcase_31 AC 78 ms
77,568 KB
testcase_32 AC 82 ms
77,440 KB
testcase_33 AC 497 ms
174,792 KB
testcase_34 AC 494 ms
174,540 KB
testcase_35 AC 493 ms
174,788 KB
testcase_36 AC 475 ms
174,784 KB
testcase_37 AC 490 ms
174,916 KB
testcase_38 AC 509 ms
174,928 KB
testcase_39 AC 487 ms
175,176 KB
testcase_40 AC 494 ms
175,032 KB
testcase_41 AC 488 ms
174,788 KB
testcase_42 AC 464 ms
174,904 KB
testcase_43 AC 468 ms
175,028 KB
testcase_44 AC 475 ms
175,020 KB
testcase_45 AC 44 ms
53,760 KB
testcase_46 AC 43 ms
53,888 KB
testcase_47 AC 44 ms
53,760 KB
testcase_48 AC 42 ms
53,888 KB
testcase_49 AC 43 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
S = list(input())

yukicoder = defaultdict(int)
yukicoder_str = "yukicoder"
for i in range(9):
    yukicoder[yukicoder_str[i]] = i

dp = [[[0 for _ in range(2)] for _ in range(10)] for _ in range(n + 1)]
dp[0][0][0] = 1
mod = 10**9 + 7
for i in range(n):
    for j in range(10):
        for k in range(2):
            dp[i + 1][j][k] += dp[i][j][k]
    if S[i] in yukicoder_str:
        for k in range(2):
            dp[i + 1][yukicoder[S[i]] + 1][k] += dp[i][yukicoder[S[i]]][k]
            dp[i + 1][yukicoder[S[i]] + 1][k] %= mod
    elif S[i] == '?':
        for j in range(9):
            dp[i + 1][j + 1][1] += dp[i][j][0]
            dp[i + 1][j + 1][1] %= mod
print(sum(dp[-1][-1]) % mod)

0