set을 사용한 checking
import sys
input = sys.stdin.readline
for test in range(int(input())):
N = int(input())
arr1 = set(input().split())
M = int(input())
for num in input().split():
print(1 if num in arr1 else 0)
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 1976 여행가자 (0) | 2021.10.21 |
---|---|
[백준][Python] 17451 평행우주 (0) | 2021.10.21 |
[백준][Python] 20168 골목대장 호석 (0) | 2021.10.20 |
[백준][Python] 2469 사다리 타기 (0) | 2021.10.20 |
[백준][Python] 2729 이진수 덧셈 (0) | 2021.10.19 |