結果

問題 No.430 文字列検索
ユーザー shi-moshi-mo
提出日時 2016-10-03 00:38:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,185 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-10 00:07:31
合計ジャッジ時間 11,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,288 KB
testcase_01 AC 904 ms
45,652 KB
testcase_02 AC 738 ms
52,608 KB
testcase_03 AC 544 ms
49,984 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 75 ms
12,160 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 74 ms
12,160 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 74 ms
12,288 KB
testcase_10 AC 93 ms
14,208 KB
testcase_11 AC 1,185 ms
30,592 KB
testcase_12 AC 1,139 ms
26,624 KB
testcase_13 AC 1,170 ms
26,752 KB
testcase_14 AC 1,002 ms
29,824 KB
testcase_15 AC 997 ms
37,376 KB
testcase_16 AC 955 ms
53,888 KB
testcase_17 AC 967 ms
54,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp
m = gets.to_i
c = m.times.map{ gets.chomp }

n = 0
c.each do |ci|
  si = s
  while /#{ci}/ =~ si
    si = ($& + $')[1..-1]
    n += 1
  end
end
puts n
0