L'últim que sumi
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
Donada una seqüència de números, s'ha de sumar l'últim nombre de dita seqüència a tots els números (inclòs ell mateix).
Input Format
El primer nombre indica la quantitat de nombres que hi ha a la seqüència. A continuació ve la seqüència de nombres.
Constraints
-
Output Format
La seqüència resultant
Test Case 1
Input
3 1 2 3
Output
4 5 6
Test Case 2
Input
5
100 200 300 400 500
Output
600 700 800 900 1000
Test Case 3
Input
10
3 5 2 4 3 6 5 4 8 1
Output
4 6 3 5 4 7 6 5 9 2
Test Case 4
Input
4
23 34 45 10
Output
33 44 55 20
Test Case 5
Input
1
10
Output
20
Test Case 6
Input
8
4 6 3 4 5 6 4 0
Output
4 6 3 4 5 6 4 0
CC BY-NC-SA 4.0