結果

問題 No.1005 BOT対策
ユーザー htensaihtensai
提出日時 2020-03-25 09:57:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-06-10 09:52:43
合計ジャッジ時間 5,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
39,956 KB
testcase_01 AC 118 ms
40,860 KB
testcase_02 AC 121 ms
41,044 KB
testcase_03 AC 126 ms
40,892 KB
testcase_04 AC 112 ms
41,248 KB
testcase_05 AC 108 ms
40,732 KB
testcase_06 AC 104 ms
40,176 KB
testcase_07 AC 95 ms
40,224 KB
testcase_08 AC 104 ms
41,012 KB
testcase_09 AC 100 ms
40,492 KB
testcase_10 AC 114 ms
41,312 KB
testcase_11 AC 100 ms
40,156 KB
testcase_12 AC 95 ms
39,936 KB
testcase_13 AC 108 ms
41,208 KB
testcase_14 AC 99 ms
39,816 KB
testcase_15 AC 111 ms
41,220 KB
testcase_16 AC 108 ms
40,880 KB
testcase_17 AC 111 ms
41,196 KB
testcase_18 AC 99 ms
39,784 KB
testcase_19 AC 109 ms
41,072 KB
testcase_20 AC 113 ms
40,944 KB
testcase_21 AC 110 ms
41,068 KB
testcase_22 AC 94 ms
39,444 KB
testcase_23 AC 101 ms
40,248 KB
testcase_24 AC 110 ms
41,292 KB
testcase_25 AC 107 ms
41,016 KB
testcase_26 AC 104 ms
40,376 KB
testcase_27 AC 116 ms
41,112 KB
testcase_28 AC 103 ms
39,836 KB
testcase_29 AC 96 ms
39,868 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