結果

問題 No.1005 BOT対策
ユーザー htensaihtensai
提出日時 2020-03-25 09:55:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-06-10 09:52:36
合計ジャッジ時間 6,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,852 KB
testcase_01 AC 124 ms
53,876 KB
testcase_02 AC 122 ms
54,512 KB
testcase_03 AC 126 ms
54,124 KB
testcase_04 AC 123 ms
54,144 KB
testcase_05 AC 125 ms
54,024 KB
testcase_06 AC 131 ms
54,068 KB
testcase_07 AC 128 ms
53,920 KB
testcase_08 AC 128 ms
53,984 KB
testcase_09 AC 126 ms
54,116 KB
testcase_10 AC 132 ms
53,988 KB
testcase_11 AC 136 ms
53,724 KB
testcase_12 WA -
testcase_13 AC 132 ms
53,956 KB
testcase_14 AC 128 ms
54,304 KB
testcase_15 AC 128 ms
54,144 KB
testcase_16 AC 113 ms
52,744 KB
testcase_17 AC 126 ms
53,808 KB
testcase_18 AC 125 ms
53,908 KB
testcase_19 AC 113 ms
53,028 KB
testcase_20 AC 128 ms
53,900 KB
testcase_21 AC 130 ms
53,972 KB
testcase_22 AC 128 ms
54,384 KB
testcase_23 AC 128 ms
53,944 KB
testcase_24 AC 128 ms
53,880 KB
testcase_25 AC 128 ms
53,752 KB
testcase_26 AC 129 ms
54,408 KB
testcase_27 AC 128 ms
53,984 KB
testcase_28 WA -
testcase_29 AC 127 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        String t = sc.next();
        if (t.length() == 1 && s.contains(t)) {
            System.out.println(-1);
            return;
        }
        int start = 0;
        int count = 0;
        while (true) {
            int result = s.indexOf(t, start);
            if (result == -1) {
                break;
            }
            count++;
            start = result + t.length();
        }
        System.out.println(count);
    }
}
0