Problem D
Cookies
Languages
en
sv
Ann Britt-Caroline has
Example
In this example, we have
![\includegraphics[width=0.8\textwidth ]{sample.png}](/problems/kakor/file/statement/en/img-0001.png)
As pictured, this gives a total of
Task
You will be given
-
cookies(N, A) - this function will be called exactly once by the judge.
-
N: the number of types of cookies.
-
A: a vector of length
. contains the number of cookies of type . is always positive. -
The function should return the number of cookies Ann has.
-
A code skeleton containing the function to be implemented, together with a sample grader, can be found at http://progolymp.se/uploads/kattis-attachments/kakor.zip.
Subtasks
The problem consists of a number of subtasks. Each subtask gives some amount of points, and to pass the subtask you must pass all the test cases in the subtask.
Subtask |
Points |
Limits |
1 |
27 |
|
2 |
34 |
|
3 |
39 |
|
Input format
The sample judge reads input in the following format:
-
line 1: N
-
line 2: A[0] A[1] ... A[N - 1]
Output format
The sample judge writes the return value of cookies(A, N).
Sample Input 1 | Sample Output 1 |
---|---|
3 3 1 5 |
9 |