結果

問題 No.1702 count good string
ユーザー tamatotamato
提出日時 2021-10-08 22:10:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 91,328 KB
最終ジャッジ日時 2024-07-23 04:34:39
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,756 KB
testcase_01 AC 37 ms
52,712 KB
testcase_02 AC 38 ms
52,760 KB
testcase_03 AC 43 ms
60,488 KB
testcase_04 AC 44 ms
60,564 KB
testcase_05 AC 45 ms
60,508 KB
testcase_06 AC 42 ms
59,420 KB
testcase_07 AC 44 ms
59,688 KB
testcase_08 AC 45 ms
60,544 KB
testcase_09 AC 45 ms
59,476 KB
testcase_10 AC 42 ms
59,980 KB
testcase_11 AC 44 ms
60,264 KB
testcase_12 AC 43 ms
60,808 KB
testcase_13 AC 107 ms
91,072 KB
testcase_14 AC 107 ms
91,240 KB
testcase_15 AC 112 ms
90,884 KB
testcase_16 AC 108 ms
91,060 KB
testcase_17 AC 108 ms
91,236 KB
testcase_18 AC 108 ms
91,076 KB
testcase_19 AC 109 ms
90,860 KB
testcase_20 AC 114 ms
91,280 KB
testcase_21 AC 107 ms
90,988 KB
testcase_22 AC 113 ms
90,820 KB
testcase_23 AC 51 ms
64,452 KB
testcase_24 AC 52 ms
65,488 KB
testcase_25 AC 51 ms
64,100 KB
testcase_26 AC 52 ms
65,104 KB
testcase_27 AC 51 ms
65,144 KB
testcase_28 AC 51 ms
65,192 KB
testcase_29 AC 52 ms
65,684 KB
testcase_30 AC 52 ms
65,104 KB
testcase_31 AC 51 ms
64,008 KB
testcase_32 AC 51 ms
64,036 KB
testcase_33 AC 106 ms
91,252 KB
testcase_34 AC 105 ms
91,124 KB
testcase_35 AC 105 ms
91,108 KB
testcase_36 AC 106 ms
91,300 KB
testcase_37 AC 105 ms
90,880 KB
testcase_38 AC 105 ms
91,240 KB
testcase_39 AC 110 ms
91,124 KB
testcase_40 AC 106 ms
91,004 KB
testcase_41 AC 106 ms
91,320 KB
testcase_42 AC 107 ms
91,008 KB
testcase_43 AC 105 ms
91,176 KB
testcase_44 AC 107 ms
91,328 KB
testcase_45 AC 37 ms
53,320 KB
testcase_46 AC 37 ms
53,488 KB
testcase_47 AC 37 ms
53,208 KB
testcase_48 AC 37 ms
52,724 KB
testcase_49 AC 36 ms
53,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    S = input().rstrip('\n')
    T = "yukicoder"

    dp = [[0] * (N+1) for _ in range(19)]
    dp[0][0] = 1
    for i, s in enumerate(S):
        for state in range(19):
            if state < 9:
                if s == T[state]:
                    dp[state + 1][i+1] = (dp[state + 1][i+1] + dp[state][i])%mod
                elif s == "?":
                    dp[state + 10][i+1] = (dp[state + 10][i+1] + dp[state][i])%mod

                dp[state][i+1] = (dp[state][i+1] + dp[state][i])%mod
            elif 10 <= state < 18:
                if s == T[state - 9]:
                    dp[state + 1][i+1] = (dp[state + 1][i+1] + dp[state][i])%mod
                dp[state][i + 1] = (dp[state][i + 1] + dp[state][i]) % mod
            else:
                dp[state][i + 1] = (dp[state][i + 1] + dp[state][i]) % mod
    print((dp[-1][-1] + dp[9][-1])%mod)


if __name__ == '__main__':
    main()
0