COCI 2006/2007, Contest #6

Task PRASE

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.

Input

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

Output the number of warnings on a single line.

Sample Tests

Input

4
mirko
stanko
stanko
stanko

Output

1

Input

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

Output

4

All Submissions
Best Solutions


Point Value: 5
Time Limit: 1.00s
Memory Limit: 32M
Added: Jul 17, 2013

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...