from bisect import bisect
import sys
N = int(sys.stdin.readline().strip())
A = list(map(int, sys.stdin.readline().split()))
M = int(sys.stdin.readline().strip())
M_data = list(map(int, sys.stdin.readline().split()))
A.sort()
for m in M_data:
i = bisect(A, m) - 1
if i != len(A) and A[i] == m:
print(1)
else:
print(0)
'파이썬 코테 준비' 카테고리의 다른 글
[백준 10816] 숫자 카드 2 - Python(파이썬) (0) | 2021.02.20 |
---|---|
[백준 1654] 랜선 자르기 - Python(파이썬) (0) | 2021.02.20 |
[백준 2110] 공유기 설치 - Python(파이썬) (0) | 2021.02.20 |
[백준 5430] AC - Python(파이썬) (0) | 2021.02.15 |
[백준 1021] 회전하는 큐 - Python(파이썬) (0) | 2021.02.15 |
댓글