結果

問題 No.430 文字列検索
ユーザー shi-moshi-mo
提出日時 2020-10-01 23:40:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,261 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-10 00:47:10
合計ジャッジ時間 12,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 968 ms
45,712 KB
testcase_02 AC 771 ms
52,736 KB
testcase_03 AC 565 ms
50,048 KB
testcase_04 AC 79 ms
11,904 KB
testcase_05 AC 78 ms
11,904 KB
testcase_06 AC 78 ms
12,160 KB
testcase_07 AC 76 ms
12,288 KB
testcase_08 AC 78 ms
12,288 KB
testcase_09 AC 79 ms
11,904 KB
testcase_10 AC 97 ms
14,080 KB
testcase_11 AC 1,261 ms
30,592 KB
testcase_12 AC 1,222 ms
27,008 KB
testcase_13 AC 1,189 ms
26,624 KB
testcase_14 AC 1,016 ms
22,656 KB
testcase_15 AC 1,031 ms
37,376 KB
testcase_16 AC 1,009 ms
53,760 KB
testcase_17 AC 1,036 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..]
    n += 1
  end
end
puts n
0