atcoder#CF17FINALC. Time Gap
Time Gap
Score : points
Problem Statement
In CODE FESTIVAL XXXX, there are participants from all over the world, including Takahashi.
Takahashi checked and found that the time gap (defined below) between the local times in his city and the -th person's city was hours. The time gap between two cities is defined as follows. For two cities A and B, if the local time in city B is o'clock at the moment when the local time in city A is o'clock, then the time gap between these two cities is defined to be hours. Here, we are using -hour notation. That is, the local time in the -th person's city is either o'clock or o'clock at the moment when the local time in Takahashi's city is o'clock, for example.
Then, for each pair of two people chosen from the people, he wrote out the time gap between their cities. Let the smallest time gap among them be hours.
Find the maximum possible value of .
Constraints
- All input values are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum possible value of .
3
7 12 8
4
For example, consider the situation where it is , and o'clock in each person's city at the moment when it is o'clock in Takahashi's city. In this case, the time gap between the second and third persons' cities is hours.
2
11 11
2
1
0
0
Note that Takahashi himself is also a participant.