간단한 hash-map
import sys
input = sys.stdin.readline
num_set = {}
N = int(input())
A = list(map(int, input().split()))
for num in A:
num_set[num] = True
M = int(input())
Q = list(map(int, input().split()))
for num in Q:
if num in num_set:
print(1)
else:
print(0)
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 1080 행렬 (0) | 2021.10.15 |
---|---|
[백준][Python] 20551 Sort 마스터 배지훈의 후계자 (0) | 2021.10.15 |
[백준][Python] 17472 다리만들기2 (0) | 2021.10.14 |
[백준][Python] 2146 다리만들기 (0) | 2021.10.13 |
[백준][Python] 2667 단지번호붙이기 : union-find 풀이 (0) | 2021.10.13 |