ABSMAX


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 493M

Problem type

Cho dãy số a1,a2,a3,...,aN , hãy tìm hai chỉ số ij sao cho: i<j|ai+aj| lớn nhất

Dữ liệu:

  • Dòng đầu tiên ghi một số nguyên N(2N200000) - số phần tử trong dãy

  • Dòng thứ hai ghi N số nguyên a1,a2,...,aN(|ai|109)

Kết quả:

  • In ra số nguyên duy nhất là giá trị |ai+aj|lớn nhất tìm được.

Sample Input

Copy
6 
-4 3 -9 0 10 5

Sample Output

Copy
15

Comments

There are no comments at the moment.