시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 1024 MB71464566.176%

문제

There are $N$ cards in a deck, numbered from $1$ to $N$, where card $i$ has a positive integer $A_i$ written on it.

You are to perform $N - 1$ moves with the cards. In each move, you select two cards of your choice from the deck. Let $x$ and $y$ be the integers written on the selected cards, respectively. Remove both selected cards, and insert a new card into the deck with $2 \cdot \gcd(x, y)$ written on it, where $\gcd(x, y)$ is the greatest common divisor of $x$ and $y$. Note that with this one move, there will be one fewer card in the deck (as you remove two cards and insert one new card).

After all $N -1$ moves have been performed, there will be exactly one card remaining. Your goal is to maximize the integer written on the last card; output this integer.

입력

Input begins with an integer $N$ ($2 ≤ N ≤ 100\, 000$) representing the number of cards. The next line contains $N$ integers $A_i$ ($1 ≤ A_i ≤ 10^9$) representing the number written on card $i$.

출력

Output an integer in a single line representing the maximum possible integer written on the last card.

예제 입력 1

3
2 4 6

예제 출력 1

8

To get the maximum possible integer on the last card, you have to select card $1$ and card $3$ on the first move with $x = 2$ and $y = 6$. Remove both selected cards, and insert a new card with $2 \cdot \gcd(2, 6) = 4$ written on it. For the second move, there are two cards remaining with an integer $4$ written on each card. Select those cards with $x = 4$ and $y = 4$. Remove both selected cards, and insert a new card with $2 \cdot \gcd(4, 4) = 8$ written on it. The last card has an integer $8$ written on it, and it is the maximum possible integer in this example.

예제 입력 2

3
3 5 7

예제 출력 2

2

Regardless of your choice in each move, the answer will always be $2$.

예제 입력 3

4
9 9 9 9

예제 출력 3

36

예제 입력 4

5
10 100 1000 10000 100000

예제 출력 4

160