結果

問題 No.430 文字列検索
ユーザー tentententen
提出日時 2020-12-25 17:47:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 79,580 KB
実行使用メモリ 75,540 KB
最終ジャッジ日時 2024-11-10 00:51:06
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,180 KB
testcase_01 AC 469 ms
75,540 KB
testcase_02 AC 308 ms
51,500 KB
testcase_03 AC 308 ms
51,908 KB
testcase_04 AC 104 ms
41,460 KB
testcase_05 AC 108 ms
41,204 KB
testcase_06 AC 108 ms
41,152 KB
testcase_07 AC 98 ms
39,900 KB
testcase_08 AC 431 ms
73,136 KB
testcase_09 AC 119 ms
41,248 KB
testcase_10 AC 180 ms
46,512 KB
testcase_11 AC 341 ms
55,420 KB
testcase_12 AC 349 ms
55,352 KB
testcase_13 AC 361 ms
55,472 KB
testcase_14 AC 337 ms
53,632 KB
testcase_15 AC 321 ms
52,636 KB
testcase_16 AC 312 ms
51,720 KB
testcase_17 AC 304 ms
51,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        long[][] table = new long[10][length];
        for (long[] xx : table) {
            Arrays.fill(xx, -1L);
        }
        HashMap<Long, Integer> map = new HashMap<>();
        for (int i = 0; i < length; i++) {
            table[0][i] = arr[i] - 'A' + 1;
            map.put(table[0][i], map.getOrDefault(table[0][i], 0) + 1);
        }
        for (int i = 1; i < 10; i++) {
            for (int j = 0; j + i < length; j++) {
                table[i][j] = table[i - 1][j] * 27 + table[0][j + i];
                map.put(table[i][j], map.getOrDefault(table[i][j], 0) + 1);
            }
        }
        int m = sc.nextInt();
        int ans = 0;
        for (int i = 0; i < m; i++) {
            ans += map.getOrDefault(getLong(sc.next()), 0);
        }
        System.out.println(ans);
    }
    
    static long getLong(String s) {
        long ans = 0;
        for (char c : s.toCharArray()) {
            ans *= 27;
            ans += c - 'A' + 1;
        }
        return ans;
    }
}
0