ohmy.codes

IP 222.236.0.0 Created 03-30 02:40
1
#include <iostream>
2
#include <unordered_set>
3
using namespace std;
4
5
int main()
6
{
7
ios::sync_with_stdio(false);
8
cin.tie(nullptr);
9
10
unordered_set<int> num;
11
int n, m;
12
cin >> n;
13
14
for (int i = 0; i < n; i++)
15
{
16
int temp;
17
cin >> temp;
18
num.insert(temp);
19
}
20
21
cin >> m;
22
for (int i = 0; i < m; i++)
23
{
24
int temp;
25
cin >> temp;
26
if (num.find(temp) != num.end()) cout << "1\n";
27
else cout << "0\n";
28
}
29
return 0;
30
}
31