[백준] #10815 숫자 카드 python
2022. 12. 30. 14:11
https://www.acmicpc.net/problem/10815
📕 설명 📕
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)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1620 나는야 포켓몬 마스터 이다솜 python (0) | 2022.12.30 |
---|---|
[백준] #14425 문자열 집합 python (0) | 2022.12.30 |
[백준] #1018 체스판 다시 칠하기 python (0) | 2022.12.30 |
[백준] #1436 영화감독 숌 python (0) | 2022.12.30 |
[백준] #7568 덩치 python (4) | 2022.12.28 |