結果

問題 No.430 文字列検索
ユーザー devtatuodevtatuo
提出日時 2020-05-05 07:24:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,783 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 3,864 ms
コンパイル使用メモリ 75,608 KB
実行使用メモリ 39,928 KB
最終ジャッジ日時 2024-11-10 00:43:54
合計ジャッジ時間 13,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,964 KB
testcase_01 AC 189 ms
39,612 KB
testcase_02 AC 301 ms
39,604 KB
testcase_03 AC 282 ms
39,488 KB
testcase_04 AC 46 ms
36,652 KB
testcase_05 AC 47 ms
37,016 KB
testcase_06 AC 47 ms
37,016 KB
testcase_07 AC 48 ms
36,828 KB
testcase_08 AC 76 ms
37,908 KB
testcase_09 AC 48 ms
36,900 KB
testcase_10 AC 70 ms
37,164 KB
testcase_11 AC 913 ms
39,584 KB
testcase_12 AC 1,170 ms
39,804 KB
testcase_13 AC 1,138 ms
39,564 KB
testcase_14 AC 889 ms
39,640 KB
testcase_15 AC 728 ms
39,724 KB
testcase_16 AC 931 ms
39,856 KB
testcase_17 AC 1,783 ms
39,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Main {

    public static void main(String[] args) throws Exception {

        InputStreamReader is = new InputStreamReader(System.in);
        BufferedReader reader = new BufferedReader(is);

        List<String> mylist = new ArrayList<>();

        // 標準入力からの値を変数strinputに代入
        String strinput = reader.readLine();

        while (strinput != null) {

            mylist.add(strinput);
            strinput = reader.readLine();

        }

        String s = mylist.get(0);
        int m = Integer.valueOf(mylist.get(1));

        int mysum = 0;
        for (int i = 2; i < 2 + m; i++) {
            String temp = mylist.get(i);
            int sposi = 0;
            while (s.indexOf(temp, sposi) >= 0) {

                sposi = s.indexOf(temp, sposi) + 1;
                mysum += 1;
            }

        }
        System.out.println(mysum);

    }

}
0