結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,092 KB
testcase_01 AC 135 ms
54,124 KB
testcase_02 AC 136 ms
53,968 KB
testcase_03 AC 140 ms
54,160 KB
testcase_04 AC 131 ms
53,912 KB
testcase_05 AC 135 ms
53,952 KB
testcase_06 AC 134 ms
53,752 KB
testcase_07 AC 131 ms
53,840 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 132 ms
54,036 KB
testcase_11 WA -
testcase_12 AC 135 ms
53,960 KB
testcase_13 WA -
testcase_14 AC 134 ms
53,896 KB
testcase_15 AC 134 ms
53,788 KB
testcase_16 WA -
testcase_17 AC 136 ms
54,152 KB
testcase_18 WA -
testcase_19 AC 137 ms
53,960 KB
testcase_20 AC 134 ms
54,004 KB
testcase_21 AC 136 ms
53,880 KB
testcase_22 AC 133 ms
54,072 KB
testcase_23 AC 135 ms
53,852 KB
testcase_24 AC 134 ms
53,996 KB
testcase_25 AC 133 ms
53,936 KB
testcase_26 WA -
testcase_27 AC 139 ms
54,004 KB
testcase_28 AC 134 ms
54,440 KB
testcase_29 AC 131 ms
53,848 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) {
			System.out.println(-1);
			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