Problem L
Lazy Students
As a third-year student at Hogwarts School of Witchcraft and Wizardry, Harry must study arithmetic (known as Arithmancy in the wizard world).
Today’s Arithmancy lesson revolves around addition. For
homework, Harry is given four positive integers
-
, -
is a substring of , -
is a substring of , -
is a substring of .
For example, given
-
, -
is a substring of , -
is a substring of , -
is a substring of .
If
As there can be multiple triplets satisfying the given conditions, Harry needs to find a triplet with smallest difference between the minimum number and the maximum number.
Harry is too lazy for this homework. Please help him!
Note: A substring of a string is a contiguous subsequence of that string.
Input
The input contains a single line with
Output
Print a single line containing the smallest difference between the minimum and the
maximum number of a triplet satisfying all the above
conditions. If there are no triplets satisfying the given
conditions, print
Explanation of the sample input
The triplets satisfying the given conditions are:
-
, -
, -
, -
.
Among them, the triplets
Sample Input 1 | Sample Output 1 |
---|---|
517 33 34 35 |
314 |