-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
34 lines (26 loc) Β· 898 Bytes
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package String.P14426;
import java.io.*;
import java.util.*;
public class Main {
static int N, M;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P14426/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
String[] S = new String[N];
for (int i = 0; i < N; i++) S[i] = br.readLine();
int ans = 0;
for (int i = 0; i < M; i++) {
String s = br.readLine();
for (int j = 0; j < N; j++) {
if (S[j].startsWith(s)) {
ans ++;
break;
}
}
}
System.out.println(ans);
}
}