結果

問題 No.1702 count good string
ユーザー ygd.ygd.
提出日時 2021-10-10 11:00:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 76,732 KB
最終ジャッジ日時 2024-09-14 05:16:11
合計ジャッジ時間 7,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,944 KB
testcase_01 AC 42 ms
54,808 KB
testcase_02 AC 46 ms
59,864 KB
testcase_03 AC 50 ms
63,172 KB
testcase_04 AC 49 ms
62,732 KB
testcase_05 AC 49 ms
62,468 KB
testcase_06 AC 50 ms
62,404 KB
testcase_07 AC 49 ms
63,380 KB
testcase_08 AC 49 ms
62,260 KB
testcase_09 AC 49 ms
62,736 KB
testcase_10 AC 49 ms
63,060 KB
testcase_11 AC 50 ms
63,072 KB
testcase_12 AC 49 ms
63,060 KB
testcase_13 AC 204 ms
76,056 KB
testcase_14 AC 203 ms
76,256 KB
testcase_15 AC 202 ms
76,320 KB
testcase_16 AC 293 ms
76,204 KB
testcase_17 AC 199 ms
76,732 KB
testcase_18 AC 203 ms
76,096 KB
testcase_19 AC 202 ms
76,520 KB
testcase_20 AC 200 ms
76,184 KB
testcase_21 AC 202 ms
76,468 KB
testcase_22 AC 206 ms
76,228 KB
testcase_23 AC 53 ms
67,512 KB
testcase_24 AC 52 ms
68,192 KB
testcase_25 AC 52 ms
67,640 KB
testcase_26 AC 53 ms
68,128 KB
testcase_27 AC 53 ms
68,300 KB
testcase_28 AC 53 ms
68,588 KB
testcase_29 AC 53 ms
67,960 KB
testcase_30 AC 53 ms
67,144 KB
testcase_31 AC 52 ms
68,340 KB
testcase_32 AC 54 ms
67,932 KB
testcase_33 AC 180 ms
76,328 KB
testcase_34 AC 180 ms
76,116 KB
testcase_35 AC 182 ms
76,124 KB
testcase_36 AC 180 ms
76,660 KB
testcase_37 AC 179 ms
76,248 KB
testcase_38 AC 185 ms
76,252 KB
testcase_39 AC 186 ms
76,504 KB
testcase_40 AC 184 ms
76,400 KB
testcase_41 AC 182 ms
76,360 KB
testcase_42 AC 178 ms
76,444 KB
testcase_43 AC 186 ms
76,032 KB
testcase_44 AC 187 ms
76,244 KB
testcase_45 AC 42 ms
54,196 KB
testcase_46 AC 43 ms
54,432 KB
testcase_47 AC 43 ms
54,284 KB
testcase_48 AC 43 ms
54,068 KB
testcase_49 AC 42 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline
import copy

def main():
    N = int(input()); MOD = pow(10,9) + 7
    S = input()
    Y = "yukicoder"
    T = [Y]
    for i in range(9):
        temp = Y[:i] + "?" + Y[i+1:]
        T.append(temp)
    #print(T)
    ans = 0
    for t in T:
        #print(t)
        #i番目まで一致している場合の数
        dp = [0]*10
        dp[0] = 1
        for i in range(N):
            p = copy.copy(dp)
            dp,p = p,dp
            for j in range(9):
                if S[i] == t[j]:
                    dp[j+1] += p[j]
                    dp[j+1] %= MOD
            #print(dp)
        ans += dp[9]
        ans %= MOD
    print(ans)





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