結果

問題 No.206 数の積集合を求めるクエリ
ユーザー nebukuro09nebukuro09
提出日時 2017-01-05 12:50:06
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 653 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 124,008 KB
実行使用メモリ 13,896 KB
最終ジャッジ日時 2024-06-12 06:15:31
合計ジャッジ時間 11,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 232 ms
7,020 KB
testcase_13 AC 170 ms
6,940 KB
testcase_14 AC 94 ms
7,036 KB
testcase_15 AC 46 ms
6,940 KB
testcase_16 AC 47 ms
6,940 KB
testcase_17 AC 30 ms
10,176 KB
testcase_18 AC 14 ms
6,944 KB
testcase_19 AC 27 ms
7,312 KB
testcase_20 AC 13 ms
6,944 KB
testcase_21 AC 16 ms
6,940 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 29 ms
10,276 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio, std.bitmanip;

void main() {
    auto s = readln.split.map!(to!int);
    auto L = s[0];
    auto M = s[0];
    auto N = s[0];
    auto AN = readln.split.map!(to!int);
    auto BN = readln.split.map!(to!int);

    BitArray A, B;
    A.length = B.length = 10^^5+1;
    foreach (a; AN) A[a] = true;
    foreach (b; BN) B[b] = true;

    auto Q = readln.chomp.to!int;
    foreach (i; 0..Q) {
        (A&B).bitsSet.array.length.writeln;
        B <<= 1;
    }
}
0