結果

問題 No.1702 count good string
ユーザー mkawa2mkawa2
提出日時 2021-10-08 22:16:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,160 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-23 04:44:46
合計ジャッジ時間 5,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 47 ms
54,784 KB
testcase_04 AC 45 ms
54,656 KB
testcase_05 AC 45 ms
54,144 KB
testcase_06 AC 44 ms
54,528 KB
testcase_07 AC 44 ms
54,756 KB
testcase_08 AC 45 ms
54,528 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 44 ms
54,400 KB
testcase_11 AC 44 ms
54,656 KB
testcase_12 AC 44 ms
54,912 KB
testcase_13 AC 144 ms
76,168 KB
testcase_14 AC 138 ms
76,044 KB
testcase_15 AC 139 ms
76,160 KB
testcase_16 AC 136 ms
76,160 KB
testcase_17 AC 141 ms
76,032 KB
testcase_18 AC 146 ms
76,032 KB
testcase_19 AC 144 ms
76,416 KB
testcase_20 AC 139 ms
76,160 KB
testcase_21 AC 143 ms
76,160 KB
testcase_22 AC 135 ms
76,032 KB
testcase_23 AC 52 ms
62,720 KB
testcase_24 AC 50 ms
61,952 KB
testcase_25 AC 53 ms
62,336 KB
testcase_26 AC 50 ms
61,952 KB
testcase_27 AC 51 ms
62,464 KB
testcase_28 AC 51 ms
62,720 KB
testcase_29 AC 51 ms
62,336 KB
testcase_30 AC 52 ms
63,104 KB
testcase_31 AC 52 ms
62,464 KB
testcase_32 AC 52 ms
62,464 KB
testcase_33 AC 122 ms
76,064 KB
testcase_34 AC 123 ms
76,116 KB
testcase_35 AC 122 ms
76,108 KB
testcase_36 AC 124 ms
76,032 KB
testcase_37 AC 123 ms
75,984 KB
testcase_38 AC 116 ms
76,160 KB
testcase_39 AC 119 ms
76,160 KB
testcase_40 AC 119 ms
76,032 KB
testcase_41 AC 127 ms
76,032 KB
testcase_42 AC 122 ms
76,032 KB
testcase_43 AC 127 ms
76,140 KB
testcase_44 AC 137 ms
76,032 KB
testcase_45 AC 44 ms
53,760 KB
testcase_46 AC 44 ms
54,272 KB
testcase_47 AC 46 ms
53,888 KB
testcase_48 AC 45 ms
54,016 KB
testcase_49 AC 44 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**19
# md = 998244353
md = 10**9+7

from collections import defaultdict

n = II()
s = SI()

def cnt(s, t):
    n = len(t)
    dp = [0]*(n+1)
    ctoi = defaultdict(list)
    for i, c in enumerate(t):
        ctoi[c].append(i)

    dp[0] = 1
    for c in s:
        for i in ctoi[c][::-1]:
            dp[i+1] += dp[i]
            dp[i+1] %= md

    return dp[-1]

t = "yukicoder"
tt = [t]
for i in range(len(t)):
    nt = t[:i]+"?"+t[i+1:]
    tt.append(nt)
# print(tt)

ans = 0
for t in tt:
    ans += cnt(s, t)
    ans %= md

print(ans)
0