100 atcoder#ABC115C. [ABC115C] Christmas Eve
[ABC115C] Christmas Eve
Score : points
Problem Statement
In some other world, today is Christmas Eve.
There are trees planted in Mr. Takaha's garden. The height of the -th tree is meters.
He decides to choose trees from these trees and decorate them with electric lights. To make the scenery more beautiful, the heights of the decorated trees should be as close to each other as possible.
More specifically, let the height of the tallest decorated tree be meters, and the height of the shortest decorated tree be meters. The smaller the value is, the better. What is the minimum possible value of ?
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum possible value of .
5 3
10
15
11
14
12
2
If we decorate the first, third and fifth trees, so . This is optimal.
5 3
5
7
5
7
7
0
If we decorate the second, fourth and fifth trees, so . This is optimal.
There are not too many trees in these sample inputs, but note that there can be at most one hundred thousand trees (we just can't put a sample with a hundred thousand lines here).