結果

問題 No.1005 BOT対策
ユーザー キョウチクキョウチク
提出日時 2022-05-17 19:07:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-09-15 14:13:09
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,980 KB
testcase_01 AC 128 ms
40,992 KB
testcase_02 AC 129 ms
40,992 KB
testcase_03 AC 114 ms
40,108 KB
testcase_04 WA -
testcase_05 AC 127 ms
40,868 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 130 ms
40,872 KB
testcase_09 AC 127 ms
40,832 KB
testcase_10 AC 130 ms
41,092 KB
testcase_11 AC 129 ms
41,268 KB
testcase_12 AC 126 ms
41,068 KB
testcase_13 AC 128 ms
40,844 KB
testcase_14 AC 132 ms
41,196 KB
testcase_15 AC 131 ms
41,260 KB
testcase_16 AC 130 ms
41,132 KB
testcase_17 AC 131 ms
40,992 KB
testcase_18 AC 130 ms
41,108 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 129 ms
40,952 KB
testcase_22 AC 132 ms
40,948 KB
testcase_23 AC 126 ms
40,676 KB
testcase_24 AC 119 ms
39,916 KB
testcase_25 AC 119 ms
40,104 KB
testcase_26 AC 129 ms
40,972 KB
testcase_27 WA -
testcase_28 AC 129 ms
41,056 KB
testcase_29 AC 127 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    String msg=line;
    line=sc.nextLine();
    String target=line;
    int msg_l=msg.length(),target_l=target.length(),targeted=0;
    for(int i=0;i<msg_l-target_l+1;i++){
      String tmp=msg.substring(i,i+target_l);
      if(tmp.equals(target)){
        targeted++;
        if(2<target_l){
          i+=target_l-2;
        }
      }
    }
    System.out.println(targeted);
    sc.close();
  }
}
0