結果

問題 No.1005 BOT対策
ユーザー joybeeeejoybeeee
提出日時 2020-05-14 15:46:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 76,372 KB
実行使用メモリ 56,340 KB
最終ジャッジ日時 2025-01-01 20:12:07
合計ジャッジ時間 7,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

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;) {
        if(s.substring(i, i + lenT).equals(t)) {
          cnt++;
          i += lenT - 1;
        } else i++;
      }
      System.out.println(cnt);
  }
}
0