結果

問題 No.430 文字列検索
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-10-03 00:51:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 862 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-10 00:07:34
合計ジャッジ時間 7,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,288 KB
testcase_01 AC 178 ms
12,544 KB
testcase_02 AC 443 ms
12,544 KB
testcase_03 AC 396 ms
12,416 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 75 ms
12,416 KB
testcase_07 AC 73 ms
12,160 KB
testcase_08 AC 74 ms
12,288 KB
testcase_09 AC 73 ms
12,288 KB
testcase_10 AC 74 ms
12,288 KB
testcase_11 AC 794 ms
12,416 KB
testcase_12 AC 799 ms
12,672 KB
testcase_13 AC 798 ms
12,416 KB
testcase_14 AC 862 ms
12,416 KB
testcase_15 AC 828 ms
12,544 KB
testcase_16 AC 733 ms
12,416 KB
testcase_17 AC 734 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

def f(base, token)
  i = cnt = 0
  while i = base.index(token, i) 
    i += 1
    cnt += 1
  end
  cnt
end

base = gets.chomp
m = gets.to_i
tokens = $<.map(&:chomp)

p tokens.reduce(0){|sum, token| sum + f(base, token)}
0