EGYPIZZA - Pizza

Abotrika is having a party because his team won the African cup so he is inviting his friends to eat some pizza. Unfortunately, his friends can't eat an entire pizza but all of them know exactly how much pizza they can eat and insist on getting the exact amount of pizza but Abotrika eats one complete pizza and all of them wants his amount of pizza in one slice. Their requests break down to three different pizza slices-either one quarter or a half or three quarters of pizza.

Write a program that will help Abotrika to find out what is the minimal number of pizzas he has to order so that everyone gets exact amount of pizza they want.

Input

First line contains an integer N, 0 ≤ N ≤ 10 000, the number of friends. In each of next N lines there is amount of pizza that each of Abotrika's friends wants to eat, that is the fraction 1/4, 1/2 or 3/4.

Output

In the first and only line you should write the minimal number of pizzas Abotrika has to order don't forget to order one complete pizza for Abotrika.

Example 1

Input:
3
1/2
3/4
3/4

Output:
4

Example 2

Input:
5
1/2
3/4
1/2
1/4
1/4 

Output:
4

Added by:Kawmia Institutes
Date:2010-08-18
Time limit:0.204s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 BF LISP sbcl LISP clisp JS-RHINO LUA OBJC PHP VB.NET
Resource:Croatian Highschool Competitions in Informatics 2004

hide comments
2014-03-22 07:31:25 anonymous
\m/ in my first attempt. :D Good Problem :)
2014-03-21 16:35:48 ravichandra
i keep getting WA after running(9)...
can anyone help pls??
2014-02-22 06:01:23 Suraj Rajan
combine a 3/4 and a 1/4 instead of 4 1/4s
2014-02-12 12:23:33 ABHISHEK MANGAL
In my first attempt !!
AC :) :)

@New_Bullet : true that - the only catch in the problem is :- "all of them wants his amount of pizza in one slice"
2014-02-04 19:12:13 RAJAT SINGH
uffff.....got AC in first attempt good one ........
2014-02-03 14:42:00 Shadow_Walker
The key is to be patient n carefully consider all the possible cases ...confusing newline n Haste caused me 10 WA..phew!
2014-01-21 12:24:12 baraba
weak tests...
2014-01-06 20:59:07 New_Bullet
Seriously a very good problem! Enjoyed solving it :)@ROHIT KUMAR's comment was really useful & hence i repeat... "all of them wants his amount of pizza in one slice" ! That's the only catch in the problem!
2013-12-28 11:49:55 swagnik dutta
will abotrika prefer to eat one whole(uncut) pizza or she would prefer to eat pieces like(3/4 and 1/4),(1/2 and 1/2) etc?
2013-12-23 16:56:29 Python
9th case :D
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.