結果

問題 No.430 文字列検索
ユーザー devtatuodevtatuo
提出日時 2020-05-05 07:24:36
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,022 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 76,044 KB
実行使用メモリ 120,120 KB
最終ジャッジ日時 2024-08-15 16:26:43
合計ジャッジ時間 8,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

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