結果

問題 No.206 数の積集合を求めるクエリ
ユーザー kenkooookenkoooo
提出日時 2015-05-09 00:55:51
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 712 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-05 20:55:01
合計ジャッジ時間 24,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,808 KB
testcase_01 AC 132 ms
53,884 KB
testcase_02 AC 131 ms
53,916 KB
testcase_03 AC 132 ms
53,856 KB
testcase_04 AC 138 ms
53,832 KB
testcase_05 AC 143 ms
53,948 KB
testcase_06 AC 208 ms
56,216 KB
testcase_07 AC 212 ms
56,596 KB
testcase_08 AC 216 ms
57,108 KB
testcase_09 AC 213 ms
56,880 KB
testcase_10 AC 134 ms
53,968 KB
testcase_11 AC 159 ms
54,164 KB
testcase_12 AC 368 ms
58,948 KB
testcase_13 AC 347 ms
58,932 KB
testcase_14 AC 336 ms
58,752 KB
testcase_15 AC 326 ms
58,516 KB
testcase_16 AC 296 ms
57,428 KB
testcase_17 AC 701 ms
63,524 KB
testcase_18 AC 646 ms
59,368 KB
testcase_19 AC 710 ms
62,740 KB
testcase_20 AC 604 ms
59,288 KB
testcase_21 AC 627 ms
59,156 KB
testcase_22 AC 621 ms
59,520 KB
testcase_23 AC 711 ms
63,664 KB
testcase_24 AC 5,446 ms
69,236 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int M = sc.nextInt();
		int N = sc.nextInt();

		boolean[] A = new boolean[N];
		for (int i = 0; i < L; i++) {
			A[sc.nextInt() - 1] = true;
		}
		boolean[] B = new boolean[N];
		for (int i = 0; i < M; i++) {
			B[sc.nextInt() - 1] = true;
		}

		int Q = sc.nextInt();
		sc.close();

		int[] cnt = new int[Q];
		for (int i = 0; i < N; i++) {
			for (int q = 0; q < Q; q++) {
				if (i + q >= N) {
					break;
				}
				if (A[i + q] && B[i]) {
					cnt[q]++;
				}
			}
		}

		for (int i = 0; i < cnt.length; i++) {
			System.out.println(cnt[i]);
		}

	}
}
0