문제
N개의 정수 A[1], A[2], …, A[N]이 주어져 있을 때, 이 안에 X라는 정수가 존재하는지 알아내는 프로그램을 작성하시오.
입력
첫째 줄에 자연수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 줄에는 N개의 정수 A[1], A[2], …, A[N]이 주어진다.
다음 줄에는 M(1 ≤ M ≤ 100,000)이 주어진다. 다음 줄에는 M개의 수들이 주어지는데, 이 수들이 A안에 존재하는지 알아내면 된다.
모든 정수의 범위는 -231 보다 크거나 같고 231보다 작다.
출력
M개의 줄에 답을 출력한다. 존재하면 1을, 존재하지 않으면 0을 출력한다.
예제 입력 1
5
4 1 5 2 3
5
1 3 7 9 5
예제 출력 1
1
1
0
0
1
from collections import defaultdict
N = int(input())
origin = map(int, input().split())
M = int(input())
candidate = map(int, input().split())
check = defaultdict(int)
for origin_data in origin:
check[origin_data] = 1
for candidate_data in candidate:
if check[candidate_data] == 1:
print(1)
else:
print(0)
======================================================================
N = int(input())
origin = set(map(int, input().split()))
M = int(input())
candidate = list(map(int, input().split()))
for i in candidate:
if i not in origin:
print(0)
else:
print(1)
Python
복사