結果

問題 No.1005 BOT対策
ユーザー joybeeeejoybeeee
提出日時 2020-05-14 15:44:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 79,192 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-09-15 08:03:33
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,960 KB
testcase_01 AC 123 ms
41,276 KB
testcase_02 AC 125 ms
41,040 KB
testcase_03 AC 126 ms
41,076 KB
testcase_04 AC 125 ms
40,892 KB
testcase_05 AC 128 ms
41,292 KB
testcase_06 AC 127 ms
41,192 KB
testcase_07 AC 123 ms
40,796 KB
testcase_08 AC 128 ms
40,848 KB
testcase_09 AC 125 ms
40,984 KB
testcase_10 AC 128 ms
41,140 KB
testcase_11 AC 128 ms
41,128 KB
testcase_12 WA -
testcase_13 AC 128 ms
41,100 KB
testcase_14 AC 127 ms
41,224 KB
testcase_15 AC 128 ms
41,100 KB
testcase_16 AC 127 ms
41,136 KB
testcase_17 AC 114 ms
39,964 KB
testcase_18 AC 128 ms
41,072 KB
testcase_19 AC 127 ms
41,116 KB
testcase_20 AC 117 ms
39,932 KB
testcase_21 AC 115 ms
40,032 KB
testcase_22 AC 129 ms
41,376 KB
testcase_23 AC 128 ms
41,184 KB
testcase_24 AC 127 ms
41,168 KB
testcase_25 AC 126 ms
41,164 KB
testcase_26 AC 127 ms
41,040 KB
testcase_27 AC 116 ms
39,788 KB
testcase_28 WA -
testcase_29 AC 124 ms
40,872 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();
      
      int lenT = t.length();
      if(lenT == 1) {
          for(char c : s.toCharArray())
            if(c == t.charAt(0)) {
                System.out.println(-1);
                return;
            }
          System.out.println(0);
          return;
      }
      int cnt = 0;
      for(int i = 0; i < s.length() - lenT + 1; i++) {
        if(s.substring(i, i + lenT).equals(t)) {
          cnt++;
          i += lenT - 1;
        }
      }
      System.out.println(cnt);
  }
}
0