結果

問題 No.430 文字列検索
ユーザー horiesinitihoriesiniti
提出日時 2023-01-18 17:31:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-11-10 01:05:04
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 207 ms
19,456 KB
testcase_02 AC 295 ms
17,024 KB
testcase_03 AC 224 ms
16,768 KB
testcase_04 AC 89 ms
12,032 KB
testcase_05 AC 91 ms
11,904 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 131 ms
16,000 KB
testcase_09 AC 90 ms
12,032 KB
testcase_10 AC 100 ms
12,416 KB
testcase_11 AC 276 ms
18,176 KB
testcase_12 AC 284 ms
18,560 KB
testcase_13 AC 280 ms
18,432 KB
testcase_14 AC 236 ms
17,792 KB
testcase_15 AC 228 ms
17,152 KB
testcase_16 AC 288 ms
17,408 KB
testcase_17 AC 294 ms
17,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def fs(s1,p1,hs)
	res=0
	res+=hs["0"] if hs.member?("0")
	return res if s1.size<=p1
	e=s1[p1]
	if hs.member?(e) then
		res+=fs(s1,p1+1,hs[e])
	end
	return res
end
def f(s1,p1,hs)
	if s1.size<=p1 then
		hs["0"]=0 if hs.member?("0")==false
		hs["0"]+=1
	else
		e=s1[p1]
		if hs.member?(e) then
			f(s1,p1+1,hs[e])
		else
			hs[e]={}
			f(s1,p1+1,hs[e])
		end
	end
end
s=gets.chomp.split("")
hs={}
gets.to_i.times{
	s2=gets.chomp
	f(s2,0,hs)
}
ans=0
s.size.times{|p1|
	ans+=fs(s,p1,hs)
}
puts ans
0