結果

問題 No.1005 BOT対策
ユーザー ks2mks2m
提出日時 2020-03-06 22:52:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-10-14 10:50:09
合計ジャッジ時間 6,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,144 KB
testcase_01 AC 117 ms
41,316 KB
testcase_02 AC 109 ms
41,068 KB
testcase_03 AC 117 ms
41,376 KB
testcase_04 AC 101 ms
40,020 KB
testcase_05 AC 116 ms
41,384 KB
testcase_06 AC 116 ms
41,080 KB
testcase_07 AC 116 ms
40,968 KB
testcase_08 AC 117 ms
41,192 KB
testcase_09 AC 113 ms
40,948 KB
testcase_10 AC 117 ms
40,916 KB
testcase_11 WA -
testcase_12 AC 107 ms
39,788 KB
testcase_13 WA -
testcase_14 AC 114 ms
41,360 KB
testcase_15 AC 119 ms
41,056 KB
testcase_16 WA -
testcase_17 AC 122 ms
41,348 KB
testcase_18 AC 118 ms
41,296 KB
testcase_19 AC 118 ms
41,176 KB
testcase_20 AC 121 ms
41,260 KB
testcase_21 AC 125 ms
41,376 KB
testcase_22 AC 120 ms
40,828 KB
testcase_23 AC 115 ms
41,048 KB
testcase_24 AC 114 ms
41,640 KB
testcase_25 AC 115 ms
41,764 KB
testcase_26 WA -
testcase_27 AC 120 ms
41,084 KB
testcase_28 AC 119 ms
41,132 KB
testcase_29 AC 117 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		char[] t = sc.next().toCharArray();
		sc.close();

		if (t.length == 1) {
			for (int i = 0; i < s.length; i++) {
				if (s[i] == t[0]) {
					System.out.println(-1);
					return;
				}
			}
			System.out.println(0);
			return;
		}

		int ans = 0;
		int j = 0;
		for (int i = 0; i < s.length; i++) {
			if (s[i] == t[j]) {
				if (j == t.length - 1) {
					ans++;
					j = 0;
					if (s[i] == t[j]) {
						j++;
					}
				} else {
					j++;
				}
			} else {
				j = 0;
			}
		}
		System.out.println(ans);
	}
}
0