100 #ABC102B. [ABC102B] Maximum Difference

[ABC102B] Maximum Difference

Score : 200200 points

Problem Statement

You are given an integer sequence AA of length NN. Find the maximum absolute difference of two elements (with different indices) in AA.

Constraints

  • 2N1002 \leq N \leq 100
  • 1Ai1091 \leq A_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... ANA_N

Output

Print the maximum absolute difference of two elements (with different indices) in AA.

4
1 4 6 3
5

The maximum absolute difference of two elements is A3A1=61=5A_3-A_1=6-1=5.

2
1000000000 1
999999999
5
1 1 1 1 1
0