728x90
*문제 출처는 백준에 있습니다.
문제 제목: 1764번 듣보잡
문제 사이트: https://www.acmicpc.net/problem/1764
나의 풀이
import sys
input = sys.stdin.readline
n,m =map(int,input().split())
no_hear = [] # 듣도못한사람
no_see = [] # 보도못한사람
for i in range(n):
no_hear.append(input().strip('\n'))
for i in range(m):
no_see.append(input().strip('\n'))
answer = list(set(no_hear) & set(no_see))
print(len(answer))
for i in answer:
print(i)
교집합을 이용해서 듣도보도 못한사람을 구하면된다.
728x90
'coding test - python > 백준' 카테고리의 다른 글
백준 / 1620번 나는야 포켓몬 마스터 이다솜 / Python 파이썬 (3) | 2023.05.24 |
---|---|
백준 / 11047번 동전 0 / Python 파이썬 (0) | 2023.05.24 |
백준 / 1541번 잃어버린 괄호 / Python 파이썬 (0) | 2023.05.24 |
백준 / 1697번 숨바꼭질 - BFS / Python 파이썬 (0) | 2023.05.24 |
백준 / 1927번 최소 힙 / Python 파이썬 (0) | 2023.05.24 |