또 뭐하지
백준 1920번 수 찾기 본문
728x90
N = int(input())
A = set(list(map(int, input().split())))
M = int(input())
m = list(map(int, input().split()))
for i in m:
if i in A:
print(1)
else:
print(0)
'Study > Coding Test' 카테고리의 다른 글
백준 2164번 카드2 (0) | 2024.11.22 |
---|---|
백준 1018번 체스판 다시 칠하기 (0) | 2024.11.21 |
백준 11650번 좌표 정렬하기 (0) | 2024.11.21 |
백준 10814번 나이순 정렬 (0) | 2024.11.20 |
백준 7568번 덩치 (0) | 2024.11.20 |