結果

問題 No.206 数の積集合を求めるクエリ
ユーザー rlangevinrlangevin
提出日時 2024-01-09 08:53:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 788 ms / 7,000 ms
コード長 551 bytes
コンパイル時間 4,794 ms
コンパイル使用メモリ 310,156 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 19:48:43
合計ジャッジ時間 12,319 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 25 ms
6,944 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 26 ms
6,940 KB
testcase_15 AC 25 ms
6,944 KB
testcase_16 AC 26 ms
6,944 KB
testcase_17 AC 58 ms
6,940 KB
testcase_18 AC 27 ms
6,944 KB
testcase_19 AC 48 ms
6,944 KB
testcase_20 AC 28 ms
6,944 KB
testcase_21 AC 37 ms
6,940 KB
testcase_22 AC 36 ms
6,940 KB
testcase_23 AC 51 ms
6,940 KB
testcase_24 AC 788 ms
6,940 KB
testcase_25 AC 773 ms
6,944 KB
testcase_26 AC 754 ms
6,940 KB
testcase_27 AC 564 ms
6,940 KB
testcase_28 AC 762 ms
6,940 KB
testcase_29 AC 766 ms
6,940 KB
testcase_30 AC 735 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<int, int>;
using mint = modint998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

int main()
{
    int L, M, N;
    cin >> L >> M >> N;
	bitset<101010> A, B;
    rep(i, L){
        int a;
        cin >> a;
        A.set(a, 1);
    }
	rep(i, M){
        int b;
        cin >> b;
        B.set(b, 1);
    }       
    int Q;
	cin >> Q;
	rep(_, Q){
		cout << (A & B).count() << "\n";
		B <<= 1;
	}
	return 0;
}
0