結果

問題 No.430 文字列検索
ユーザー htensaihtensai
提出日時 2019-11-19 21:01:05
言語 Java
(openjdk 23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 413 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 46,232 KB
最終ジャッジ日時 2024-11-10 00:37:32
合計ジャッジ時間 14,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,280 KB
testcase_01 AC 356 ms
45,244 KB
testcase_02 AC 477 ms
45,736 KB
testcase_03 AC 452 ms
44,628 KB
testcase_04 AC 101 ms
41,264 KB
testcase_05 AC 102 ms
40,204 KB
testcase_06 AC 96 ms
40,156 KB
testcase_07 AC 99 ms
40,272 KB
testcase_08 AC 163 ms
41,640 KB
testcase_09 AC 122 ms
41,888 KB
testcase_10 AC 138 ms
41,632 KB
testcase_11 AC 1,047 ms
44,616 KB
testcase_12 AC 1,320 ms
45,648 KB
testcase_13 AC 1,324 ms
46,088 KB
testcase_14 AC 1,146 ms
44,820 KB
testcase_15 AC 954 ms
46,232 KB
testcase_16 AC 1,409 ms
46,216 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String target = sc.next();
		int m = sc.nextInt();
		int count = 0;
		for (int i = 0; i < m; i++) {
		    String test = sc.next();
		    int idx = 0;
		    while ((idx = target.indexOf(test, idx)) != -1) {
		        idx++;
		        count++;
		    }
		}
		System.out.println(count);
	}
}
0