시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB49530827867.476%

문제

N children are eating lunch at the table. Children take turns in taking food from the table. 

Some of the children haven't yet been taught proper manners so they jump at the food without giving the others a chance. If at any point a child takes a piece of food, and that child had already taken more food than the other children all together (not including the new piece of food), then the mother will warn that child to behave. 

You will be given the order in which the children take food. Write a program that calculates how many times the mother has to warn the children. 

입력

The first line of input contains an integer N (1 ≤ N ≤ 100), how many pieces of food the children take. 

Each of the following N lines contains the name of a child that took one piece of food. The names will be strings of at most 20 lowercase letters of the English alphabet. 

출력

Output the number of warnings on a single line. 

 

예제 입력 1

4
mirko
stanko
stanko
stanko

예제 출력 1

1

예제 입력 2

17
a
b
b
a
a
a
c
a
b
b
c
b
b
b
b
b
b

예제 출력 2

4

출처

Contest > Croatian Open Competition in Informatics > COCI 2006/2007 > Contest #6 1번