https://www.acmicpc.net/problem/13211
풀이
단순한 구현문제입니다.
# 13211번 Passport Checking
import sys
input = sys.stdin.readline
ans = 0
s = set()
n = int(input())
for _ in range(n):
stolen_passport = input().rstrip()
s.add(stolen_passport)
k = int(input())
for _ in range(k):
passport = input().rstrip()
if passport in s:
ans += 1
print(ans)
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 3062번 수 뒤집기 - 코팩 (0) | 2022.09.05 |
---|---|
[백준][Python] 10820번 문자열 분석 - 코팩 (0) | 2022.09.03 |
[백준] 18870번 좌표 압축 - 파이썬 (0) | 2022.08.19 |
[백준] 4949번 균형잡힌 세상 - 코팩 (0) | 2022.08.18 |
[백준] 5430번 AC - 파이썬 (0) | 2022.08.16 |