-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA214.java
39 lines (30 loc) · 1.03 KB
/
A214.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
35
36
37
38
39
import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;
public class A214 {
static void insertarRey(Map<String, Integer> mapa, String nombre) {
if (!mapa.containsKey(nombre)) {
mapa.put(nombre, 1);
} else {
mapa.put(nombre, mapa.get(nombre) + 1);
}
}
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int numeroReyes = sc.nextInt();
while (numeroReyes != 0) {
Map<String, Integer> listaReyes = new TreeMap<>();
for (int i = 0; i < numeroReyes; i++) {
insertarRey(listaReyes, sc.next());
}
int numeroSucesores = sc.nextInt();
for (int i = 0; i < numeroSucesores; i++) {
String nombre = sc.next();
insertarRey(listaReyes, nombre);
System.out.println(listaReyes.get(nombre));
}
System.out.println();
numeroReyes = sc.nextInt();
}
}
}