[백준] #10815 숫자 카드 python

2022. 12. 30. 14:11

https://www.acmicpc.net/problem/10815

 

10815번: 숫자 카드

첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10,

www.acmicpc.net

 

📕 설명 📕

N개의 수를 set에 넣고 M개의 수를 리스트로 만들어, M list를 하나씩 방문하여 체크한다.

 

🧑🏻‍💻 나의 풀이 🧑🏻‍💻

N = int(input())
N_list = set(map(int,input().split()))
M = int(input())
M_list = list(map(int,input().split()))
result = []
for i in M_list:
    if i not in N_list:
        result.append(0)
    else:
        result.append(1)
print(*result)

 

BELATED ARTICLES

more