#CF17FINALC. Time Gap

Time Gap

Score : 500500 points

Problem Statement

In CODE FESTIVAL XXXX, there are N+1N+1 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 ii-th person's city was DiD_i 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 dd o'clock at the moment when the local time in city A is 00 o'clock, then the time gap between these two cities is defined to be min(d,24d)min(d,24-d) hours. Here, we are using 2424-hour notation. That is, the local time in the ii-th person's city is either dd o'clock or 24d24-d o'clock at the moment when the local time in Takahashi's city is 00 o'clock, for example.

Then, for each pair of two people chosen from the N+1N+1 people, he wrote out the time gap between their cities. Let the smallest time gap among them be ss hours.

Find the maximum possible value of ss.

Constraints

  • 1N501 \leq N \leq 50
  • 0Di120 \leq D_i \leq 12
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

NN

D1D_1 D2D_2 ...... DND_N

Output

Print the maximum possible value of ss.

3
7 12 8
4

For example, consider the situation where it is 77, 1212 and 1616 o'clock in each person's city at the moment when it is 00 o'clock in Takahashi's city. In this case, the time gap between the second and third persons' cities is 44 hours.

2
11 11
2
1
0
0

Note that Takahashi himself is also a participant.