#ABC140C. Maximal Value
Maximal Value
题目描述
There is an integer sequence of length whose values are unknown.
Given is an integer sequence of length which is known to satisfy the following:
Find the maximum possible sum of the elements of .
有一个长度为 的整数序列 ,其值未知。
已知长度为 的整数序列 满足以下条件:
求 中各元素可能的最大和。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 中元素的最大可能和。
样例 #1
样例输入 #1
3
2 5
样例输出 #1
9
样例 #2
样例输入 #2
2
3
样例输出 #2
6
样例 #3
样例输入 #3
6
0 153 10 10 23
样例输出 #3
53
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
例如, 可以是( , , ),( , , ),或者( , , )。在这些候选数中, = ( , , ) 的和可能最大。