結果

問題 No.1702 count good string
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 227,604 KB
最終ジャッジ日時 2024-07-23 05:06:34
合計ジャッジ時間 17,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,352 KB
testcase_01 AC 38 ms
52,832 KB
testcase_02 AC 45 ms
61,404 KB
testcase_03 AC 48 ms
63,928 KB
testcase_04 AC 52 ms
64,204 KB
testcase_05 AC 49 ms
62,684 KB
testcase_06 AC 49 ms
63,136 KB
testcase_07 AC 48 ms
62,576 KB
testcase_08 AC 48 ms
63,276 KB
testcase_09 AC 52 ms
64,828 KB
testcase_10 AC 52 ms
63,336 KB
testcase_11 AC 54 ms
64,516 KB
testcase_12 AC 48 ms
63,356 KB
testcase_13 AC 612 ms
227,060 KB
testcase_14 AC 603 ms
227,320 KB
testcase_15 AC 610 ms
227,052 KB
testcase_16 AC 610 ms
227,356 KB
testcase_17 AC 605 ms
227,032 KB
testcase_18 AC 615 ms
227,040 KB
testcase_19 AC 605 ms
227,332 KB
testcase_20 AC 604 ms
227,084 KB
testcase_21 AC 611 ms
227,184 KB
testcase_22 AC 605 ms
227,168 KB
testcase_23 AC 64 ms
72,792 KB
testcase_24 AC 64 ms
72,352 KB
testcase_25 AC 64 ms
73,104 KB
testcase_26 AC 64 ms
72,728 KB
testcase_27 AC 63 ms
72,764 KB
testcase_28 AC 64 ms
71,936 KB
testcase_29 AC 64 ms
72,524 KB
testcase_30 AC 65 ms
72,192 KB
testcase_31 AC 64 ms
72,268 KB
testcase_32 AC 63 ms
72,540 KB
testcase_33 AC 644 ms
227,604 KB
testcase_34 AC 646 ms
227,288 KB
testcase_35 AC 677 ms
227,312 KB
testcase_36 AC 645 ms
227,284 KB
testcase_37 AC 646 ms
227,280 KB
testcase_38 AC 648 ms
227,384 KB
testcase_39 AC 649 ms
227,008 KB
testcase_40 AC 642 ms
227,020 KB
testcase_41 AC 651 ms
226,988 KB
testcase_42 AC 684 ms
227,028 KB
testcase_43 AC 593 ms
227,100 KB
testcase_44 AC 598 ms
227,236 KB
testcase_45 AC 38 ms
52,840 KB
testcase_46 AC 37 ms
53,632 KB
testcase_47 AC 37 ms
53,292 KB
testcase_48 AC 38 ms
54,116 KB
testcase_49 AC 37 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
n = int(input())
s = input()
ans = 0
def main(s, t):
	global ans
	n = len(s)
	t = list(t)
	dp = [[0] * (len(t) + 1) for i in range(n + 1)]
	dp[0][0] = 1
	mod = 10 ** 9 + 7
	for i in range(n):
		try:
			ind = t.index(s[i])
		except: ind = len(t) + 1
		for j in range(len(t) + 1):
			dp[i + 1][j] += dp[i][j]
			if j == ind: dp[i + 1][j + 1] += dp[i][j]; dp[i + 1][j + 1] %= mod
			dp[i + 1][j] %= mod
	ans += dp[-1][-1]
ts = ["yukicoder", "?ukicoder", "y?kicoder", "yu?icoder", "yuk?coder", "yuki?oder", "yukic?der", "yukico?er", "yukicod?r", "yukicode?"]
for t in ts:
	main(s, t)
print(ans % (10 ** 9 + 7))
0