N = int(input())
A = set(map(int, input().split(' ')))
M = int(input())
M_lis = list(map(int, input().split(' ')))
for m in M_lis:
if m in A:
print('1')
else:
print('0')
'Programming > Algorithm' 카테고리의 다른 글
[Python] 백준 2750번 : 수 정렬하기 (0) | 2020.11.11 |
---|---|
[Python] 백준 4195번 : 친구 네트워크 (0) | 2020.11.11 |
[Python] 백준 10930번 : SHA-256 (0) | 2020.11.11 |
[Python] 백준 5397번 : 키로거 (0) | 2020.11.11 |
[Python] 백준 1966번 : 프린터 큐 (0) | 2020.11.11 |