結果

問題 No.1005 BOT対策
ユーザー htensaihtensai
提出日時 2020-03-25 09:55:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 76,372 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2025-01-01 19:59:30
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
54,308 KB
testcase_01 AC 108 ms
54,368 KB
testcase_02 AC 99 ms
54,400 KB
testcase_03 AC 117 ms
54,312 KB
testcase_04 AC 101 ms
54,440 KB
testcase_05 AC 103 ms
54,288 KB
testcase_06 AC 108 ms
54,316 KB
testcase_07 AC 106 ms
54,336 KB
testcase_08 AC 105 ms
54,140 KB
testcase_09 AC 105 ms
54,272 KB
testcase_10 AC 108 ms
54,312 KB
testcase_11 AC 113 ms
54,116 KB
testcase_12 WA -
testcase_13 AC 108 ms
54,136 KB
testcase_14 AC 105 ms
54,272 KB
testcase_15 AC 110 ms
54,148 KB
testcase_16 AC 109 ms
54,340 KB
testcase_17 AC 107 ms
54,288 KB
testcase_18 AC 119 ms
54,456 KB
testcase_19 AC 119 ms
54,268 KB
testcase_20 AC 117 ms
54,388 KB
testcase_21 AC 109 ms
54,112 KB
testcase_22 AC 107 ms
54,148 KB
testcase_23 AC 109 ms
54,352 KB
testcase_24 AC 107 ms
54,340 KB
testcase_25 AC 111 ms
54,380 KB
testcase_26 AC 106 ms
54,212 KB
testcase_27 AC 106 ms
54,144 KB
testcase_28 WA -
testcase_29 AC 98 ms
54,132 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