結果

問題 No.430 文字列検索
ユーザー htensaihtensai
提出日時 2019-11-19 21:49:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 88,324 KB
最終ジャッジ日時 2024-11-10 00:37:40
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,176 KB
testcase_01 AC 565 ms
88,324 KB
testcase_02 AC 277 ms
47,952 KB
testcase_03 AC 294 ms
47,348 KB
testcase_04 AC 119 ms
41,196 KB
testcase_05 AC 119 ms
41,272 KB
testcase_06 AC 117 ms
40,084 KB
testcase_07 AC 124 ms
41,388 KB
testcase_08 AC 480 ms
79,364 KB
testcase_09 AC 125 ms
41,084 KB
testcase_10 AC 178 ms
47,028 KB
testcase_11 AC 347 ms
53,328 KB
testcase_12 AC 355 ms
52,756 KB
testcase_13 AC 364 ms
52,864 KB
testcase_14 AC 353 ms
51,092 KB
testcase_15 AC 321 ms
50,016 KB
testcase_16 AC 308 ms
49,552 KB
testcase_17 AC 286 ms
47,680 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();
		HashMap<Long, Integer>[] maps = new HashMap[10];
		for (int i = 0; i < 10; i++) {
		    maps[i] = new HashMap<Long, Integer>();
		}
		for (int i = 0; i < arr.length; i++) {
		    long code = 0;
		    for (int j = 0; j < 10 && i + j < arr.length; j++) {
		        code *= 26;
		        code += arr[i + j] - 'A';
		        if (maps[j].containsKey(code)) {
		            maps[j].put(code, maps[j].get(code) + 1);
		        } else {
		            maps[j].put(code, 1);
		        }
		    }
		}
		int m = sc.nextInt();
		int ans = 0;
		for (int i = 0; i < m; i++) {
		    char[] tests = sc.next().toCharArray();
		    long code = 0;
		    for (int j = 0; j < tests.length; j++) {
		        code *= 26;
		        code += tests[j] - 'A';
		    }
		    Integer exist = maps[tests.length - 1].get(code);
		    if (exist != null) {
		        ans += exist;
		    }
		}
		System.out.println(ans);
	}
}
0