반응형
import sys
a = int(sys.stdin.readline())
x = list(map(int,sys.stdin.readline().split()))
b = int(sys.stdin.readline())
y = list(map(int,sys.stdin.readline().split()))
dic={}
for i in x:
dic[i]=True
for j in y:
if j in dic:
print(1)
else:
print(0)
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 5355 (0) | 2020.10.14 |
---|---|
baekjoon - python - 10845 (0) | 2020.10.10 |
baekjoon - python - 10815 (0) | 2020.10.10 |
baekjoon - python - 10867 (0) | 2020.10.10 |
baekjoon - python - 1927 (0) | 2020.10.04 |
댓글