結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 43 ms
54,144 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 55 ms
64,384 KB
testcase_04 AC 53 ms
64,128 KB
testcase_05 AC 53 ms
64,280 KB
testcase_06 AC 56 ms
64,128 KB
testcase_07 AC 56 ms
63,872 KB
testcase_08 AC 59 ms
64,000 KB
testcase_09 AC 55 ms
64,256 KB
testcase_10 AC 55 ms
64,000 KB
testcase_11 AC 60 ms
64,128 KB
testcase_12 AC 53 ms
64,256 KB
testcase_13 AC 463 ms
174,872 KB
testcase_14 AC 464 ms
174,816 KB
testcase_15 AC 475 ms
174,664 KB
testcase_16 AC 477 ms
175,128 KB
testcase_17 AC 481 ms
174,660 KB
testcase_18 AC 465 ms
174,788 KB
testcase_19 AC 467 ms
174,908 KB
testcase_20 AC 478 ms
174,912 KB
testcase_21 AC 470 ms
175,016 KB
testcase_22 AC 487 ms
174,656 KB
testcase_23 AC 81 ms
77,312 KB
testcase_24 AC 83 ms
77,440 KB
testcase_25 AC 79 ms
77,568 KB
testcase_26 AC 79 ms
77,440 KB
testcase_27 AC 80 ms
77,440 KB
testcase_28 AC 76 ms
77,824 KB
testcase_29 AC 80 ms
77,332 KB
testcase_30 AC 76 ms
77,440 KB
testcase_31 AC 75 ms
77,312 KB
testcase_32 AC 85 ms
77,344 KB
testcase_33 AC 476 ms
174,776 KB
testcase_34 AC 473 ms
174,868 KB
testcase_35 AC 470 ms
174,744 KB
testcase_36 AC 457 ms
174,788 KB
testcase_37 AC 483 ms
174,660 KB
testcase_38 AC 474 ms
174,724 KB
testcase_39 AC 455 ms
174,896 KB
testcase_40 AC 477 ms
174,792 KB
testcase_41 AC 471 ms
174,528 KB
testcase_42 AC 455 ms
174,768 KB
testcase_43 AC 464 ms
174,792 KB
testcase_44 AC 464 ms
174,796 KB
testcase_45 AC 43 ms
53,888 KB
testcase_46 AC 44 ms
53,632 KB
testcase_47 AC 44 ms
53,760 KB
testcase_48 AC 43 ms
53,760 KB
testcase_49 AC 47 ms
54,016 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