結果

問題 No.430 文字列検索
ユーザー TatsuyaaaaTatsuyaaaa
提出日時 2019-12-15 01:18:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,093 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 58,768 KB
最終ジャッジ日時 2024-11-10 00:39:41
合計ジャッジ時間 12,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,116 KB
testcase_01 AC 781 ms
58,768 KB
testcase_02 AC 736 ms
44,604 KB
testcase_03 AC 770 ms
45,820 KB
testcase_04 AC 101 ms
41,052 KB
testcase_05 AC 114 ms
40,156 KB
testcase_06 AC 114 ms
39,988 KB
testcase_07 AC 103 ms
41,092 KB
testcase_08 AC 192 ms
42,364 KB
testcase_09 AC 130 ms
41,564 KB
testcase_10 AC 161 ms
41,224 KB
testcase_11 AC 967 ms
45,952 KB
testcase_12 AC 1,088 ms
44,664 KB
testcase_13 AC 1,081 ms
46,092 KB
testcase_14 AC 943 ms
45,964 KB
testcase_15 AC 832 ms
44,632 KB
testcase_16 AC 1,093 ms
45,668 KB
testcase_17 AC 831 ms
44,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

static long B = 1_000_000_007L;

static int contain(String a, String b) {
    int val = 0;
    int al = a.length();
    int bl = b.length();
    if (al>bl) return val;

    long t = 1;
    for (int i=0;i<al;i++) t*=B;

    long ah = 0;
    long bh = 0;
    for (int i=0;i<al;i++) ah=ah*B+(int)a.charAt(i);
    for (int i=0;i<al;i++) bh=bh*B+(int)b.charAt(i);

    for (int i=0;i+al<=bl;i++) {
        if (ah==bh) {
            val++;
        }
        if (i+al<bl) bh=bh*B+(int)b.charAt(i+al)-(int)b.charAt(i)*t;
    }
    return val;

}
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int M = sc.nextInt();
        int ans = 0;
        for (int i=0;i<M;i++) {
            String C = sc.next();
            ans += contain(C, S);
        }
        System.out.println(ans);
    }
}
0