https://www.acmicpc.net/problem/14425
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
HashSet<String> set = new HashSet<>();
int cnt = 0;
for(int i=0; i<n; i++){
set.add(br.readLine());
}
for(int i=0; i<m; i++){
String str = br.readLine();
if (set.contains(str)) {
cnt++;
}
}
System.out.println(cnt);
}
}
'ALGORITHM' 카테고리의 다른 글
[JAVA] 알고리즘 : 문자열 - 문자 찾기 (0) | 2022.06.20 |
---|---|
[JAVA] 백준 1254번- 팰린드롬 만들기 (0) | 2022.06.19 |
[Javascript] 알고리즘-문자열 압축 (0) | 2022.06.18 |
[JAVA] 백준 1302번- 베스트셀러 (0) | 2022.06.18 |
[Javascript] 프로그래머스- 탐욕법(Greedy)/ 체육복 (0) | 2022.03.11 |