SEQ1


Submit solution

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

Problem type

Cho số nguyên dương \(n\) và dãy số nguyên \(a_1, a_2, …, a_n\). Tìm giá trị lớn nhất của biểu thức \((a[j]- a[i])\) với \(1<=i<j<=n\)).

Input:

  • Dòng 1: chứa số \(n\).

  • Dòng 2: chứa \(n\) số \(a1, a2, …, an (|ai|<=10^9)\)

Output

  • Ghi ra giá trị lớn nhất của biểu thức.

Sample Input:

7 
8 2 4 -2 9 1 -3

Sample Output:

11

Giới hạn:

Sub1: \(n ≤ 200\) ;

Sub2: \(n ≤ 5000\);

Sub3: \(n ≤ 10^6\)


Comments

There are no comments at the moment.