리스트쓰니까 시간초과나서 딕셔너리로 고쳐서 통과
역시 갓셔너리.
import sys
input = sys.stdin.readline
N,M = map(int,input().split())
S = {}
for _ in range(N):
S[input().rstrip()] = 1
cnt=0
for _ in range(M):
a = input().rstrip()
try:
if S[a] ==1:
cnt+=1
except:
continue
print(cnt)
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 11051 이항계수2 (0) | 2021.07.28 |
---|---|
[백준][Python] 19699 소-난다! (0) | 2021.07.28 |
[백준][Python] 6118 숨바꼭질 (0) | 2021.07.28 |
[백준][Python] 2887 행성터널 (0) | 2021.07.28 |
[백준][Python] 1647 도시분할계획 (0) | 2021.07.28 |