백준 14425

yellowsubmarine372·2023년 7월 28일
0

백준

목록 보기
28/38

<문자열 찾기>

난이도 : 실버 3

  1. 백준 문제
    14425

  2. 코드 알고리즘

  • 트라이
  1. 코드
import sys

input = sys.stdin.readline
n, m = map(int, input().split())
strings = set()
result = 0

for _ in range(n):
    strings.add(input())

for _ in range(m):
    if input() in strings:
        result += 1

print(result)
  1. 코드 후기

다시 제대로 하자...
너무 대충함...

profile
for well-being we need nectar and ambrosia

0개의 댓글