Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Ibrahim Mesecan.
Sum of the numbers
Question: You will be given
n numbers. Calculate sum of the numbers in the positions
from a to b.
Input specification
You will be given three numbers (n, a and b) then in the
following n lines, you will be given n numbers which are
between -10000 and 10000 where
n is between 1 and 10000 and 1 ≤ a ≤ b ≤ n.
Note: Assume that the number positions
are from 1 to n.
Output specification
In the first line, show the sum of the numbers from a to b.
That will be followed by the numbers in the positions from a to b.
Sample Input I
8 7 8
-2 3 3 6 5 9 9 -7
|
Sample Input II
10 3 5
5 -7 3 4 5 6 7 -8 2 9
|
Sample Output I
2
9 -7
|
Sample Output II
12
3 4 5
|
Для отправки решений необходимо выполнить вход.
|