Firebending

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 16M

Author:
Problem type
Vincent Massey SS - 2014 Senior Contest #1

Firebending is the element of power. Firebenders use their energy to create bursts of fire in order to overwhelm their opponent. As a result, they want to maximize the value of each fire blast that they shoot. In order to do so, they must revisit the art of mathematics.

You will be given n integers, one per line. For each of the integers, ki, you can either keep it as ki, or change it to ki. Find the maximum possible final sum of all the integers.

Input Specification

The first line will contain the integer n (1n100000).
The next n lines will contain the integers ki.

Output Specification

The largest possible final sum of the n integers.

Sample Input

Copy
3
1
-2
3

Sample Output

Copy
6

Explanation

Keep 1.
Change 2 to 2.
Keep 3.
Thus, the answer is 1+2+3=6.


Comments


  • 0
    Fares_X  commented on Feb. 13, 2023, 8:55 p.m.

    Being negative can never contribute to maximizing your happiness.