Submit | All submissions | Best solutions | Back to list |
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
|
||||||||||||||
2015-08-05 06:46:57 Kriti Singhal
i am getting correct answers for all the test cases...still showing wrong answer... :( can sm1 pls hlp... Last edit: 2015-08-05 11:08:14 |
||||||||||||||
2015-08-01 05:35:55
My code does satisfy all the test cases given in the problem and comments, but still my code isn't accepted here. Frustrated! |
||||||||||||||
2015-07-15 07:51:02
Can someone please tell whats going wrong in my code. I tried all the test cases but it's failing for the 9th test case. Can anyone provide me with the test case for which the code is failing? Thanks in advance Last edit: 2015-08-05 11:08:01 |
||||||||||||||
2015-07-13 03:01:39
WA at 6th case Can you tell me what is the 6th case ? So i can find my mistake |
||||||||||||||
2015-07-11 19:22:33 Shubhransh Srivastav
tried all test cases in comments.. but getting WA on submission.. plz help Last edit: 2015-08-05 11:08:36 |
||||||||||||||
2015-07-11 08:06:51 divya gupta
nice :P Last edit: 2015-07-11 08:08:53 |
||||||||||||||
2015-07-09 22:18:57 mohit
easy one... think about the data type to take the input |
||||||||||||||
2015-07-08 13:43:48 Dwarika Pandey
Finally AC :) |
||||||||||||||
2015-07-01 16:10:06
@Aman Agarwal Thanks for your help !! :D |
||||||||||||||
2015-06-26 20:16:07 Manishi Goel
Take care of the order of testing cases and use scanf(%d/%d,); instead of using strings :D Last edit: 2015-06-26 20:16:34 |