[EASY] Packaging Cupcakes - CodeChef
[EASY] Packaging Cupcakes – CodeChef
Here is the problem: http://www.codechef.com/problems/MUFFINS3/ And here is my solution. I get 0.01s with this code.
length = int(raw_input()) for i in range(0, length): number = int(raw_input()) print ((number / 2) + 1)
View On WordPress











