結果

問題 No.1005 BOT対策
ユーザー tentententen
提出日時 2020-08-24 17:33:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,696 KB
最終ジャッジ日時 2024-11-06 10:29:44
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,920 KB
testcase_01 AC 131 ms
53,808 KB
testcase_02 AC 128 ms
54,156 KB
testcase_03 AC 135 ms
54,208 KB
testcase_04 AC 127 ms
54,304 KB
testcase_05 AC 133 ms
53,956 KB
testcase_06 AC 135 ms
54,164 KB
testcase_07 AC 132 ms
54,188 KB
testcase_08 AC 119 ms
53,176 KB
testcase_09 AC 130 ms
54,128 KB
testcase_10 AC 129 ms
54,272 KB
testcase_11 AC 132 ms
54,312 KB
testcase_12 AC 132 ms
54,200 KB
testcase_13 AC 130 ms
54,084 KB
testcase_14 AC 129 ms
54,084 KB
testcase_15 AC 130 ms
54,136 KB
testcase_16 AC 134 ms
54,208 KB
testcase_17 AC 131 ms
54,436 KB
testcase_18 AC 134 ms
54,140 KB
testcase_19 AC 135 ms
53,808 KB
testcase_20 AC 140 ms
54,028 KB
testcase_21 AC 133 ms
54,036 KB
testcase_22 AC 133 ms
54,260 KB
testcase_23 AC 129 ms
54,160 KB
testcase_24 AC 132 ms
54,224 KB
testcase_25 AC 129 ms
54,276 KB
testcase_26 AC 129 ms
54,160 KB
testcase_27 AC 128 ms
53,980 KB
testcase_28 AC 129 ms
54,112 KB
testcase_29 AC 124 ms
54,696 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.indexOf(t) >= 0) {
            System.out.println(-1);
            return;
        }
        int idx = 0;
        int count = 0;
        while ((idx = s.indexOf(t, idx)) >= 0) {
            count++;
            idx += t.length() - 1;
        }
        System.out.println(count);
    }
}
0