結果

問題 No.1005 BOT対策
ユーザー htensaihtensai
提出日時 2020-03-25 09:57:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 76,652 KB
実行使用メモリ 56,308 KB
最終ジャッジ日時 2025-01-01 20:10:25
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
54,196 KB
testcase_01 AC 117 ms
54,252 KB
testcase_02 AC 102 ms
54,364 KB
testcase_03 AC 104 ms
54,184 KB
testcase_04 AC 102 ms
54,376 KB
testcase_05 AC 104 ms
54,280 KB
testcase_06 AC 112 ms
54,532 KB
testcase_07 AC 101 ms
54,112 KB
testcase_08 AC 120 ms
54,308 KB
testcase_09 AC 109 ms
56,308 KB
testcase_10 AC 105 ms
54,132 KB
testcase_11 AC 102 ms
54,312 KB
testcase_12 AC 105 ms
54,312 KB
testcase_13 AC 106 ms
54,548 KB
testcase_14 AC 105 ms
54,156 KB
testcase_15 AC 99 ms
54,188 KB
testcase_16 AC 100 ms
54,356 KB
testcase_17 AC 103 ms
54,188 KB
testcase_18 AC 103 ms
54,432 KB
testcase_19 AC 102 ms
54,160 KB
testcase_20 AC 101 ms
54,156 KB
testcase_21 AC 106 ms
54,388 KB
testcase_22 AC 102 ms
54,268 KB
testcase_23 AC 100 ms
54,280 KB
testcase_24 AC 100 ms
54,140 KB
testcase_25 AC 120 ms
54,116 KB
testcase_26 AC 116 ms
54,116 KB
testcase_27 AC 113 ms
54,236 KB
testcase_28 AC 114 ms
54,320 KB
testcase_29 AC 108 ms
54,368 KB
testcase_30 AC 98 ms
54,316 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() - 1;
        }
        System.out.println(count);
    }
}
0