Iguals a l'últim
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
Donada una seqüència de nombres, dir quants nombres de la seqüència són iguals a l'últim (sense comptar-se ell mateix).
Input Format
El primer nombre indica la quantitat de nombres que hi ha a la seqüència. A continuació ve la seqüència.
Constraints
-
Output Format
La quantitat de nombres iguals a l'últim.
Test Case 1
Input
3 1 1 1
Output
2
Test Case 2
Input
5
23 34 23 45 23
Output
2
Test Case 3
Input
1
23
Output
0
Test Case 4
Input
5
12 23 34 45 56
Output
0
Test Case 5
Input
3
100 100 100
Output
2
Test Case 6
Input
2
23 23
Output
1
CC BY-NC-SA 4.0