201242: [AtCoder]ARC124 C - LCM of GCDs

Memory Limit:1024 MB Time Limit:4 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $500$ points

Problem Statement

We have a red bag, a blue bag, and $N$ card packs. Initially, both bags are empty. Each card pack contains two cards with integers written on them. We know that the $i$-th card pack contains a card with $a_i$ and another with $b_i$.

For each card pack, we will put one of its cards in the red bag, and the other in the blue bag.

After we put all cards in the bags, let $X$ be the greatest common divisor of all integers written on cards in the red bag. Similarly, let $Y$ be the greatest common divisor of all integers written on cards in the blue bag. Our score will be the least common multiple of $X$ and $Y$.

Find the maximum possible score.

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 50$
  • $1 \leq a_i, b_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

$N$
$a_1$ $b_1$
$\vdots$
$a_N$ $b_N$

Output

Print the maximum possible score.


Sample Input 1

2
2 15
10 6

Sample Output 1

10
  • One optimal move is to put the card with $2$ in the red bag, the card with $15$ in the blue bag, the card with $6$ in the red bag, and the card with $10$ in the blue bag.
  • Then, the greatest common divisor of all integers written on cards in the red bag will be $2$, and the greatest common divisor of all integers written on cards in the blue bag will be $5$.
  • The score here will be $10$.

Sample Input 2

5
148834018 644854700
947642099 255192490
35137537 134714230
944287156 528403260
68656286 200621680

Sample Output 2

238630

Sample Input 3

20
557057460 31783488
843507940 794587200
640711140 620259584
1901220 499867584
190122000 41414848
349507610 620259584
890404700 609665088
392918800 211889920
507308870 722352000
156850650 498904448
806117280 862969856
193607570 992030080
660673950 422816704
622015810 563434560
207866720 316871744
63057130 117502592
482593010 366954816
605221700 705015552
702500790 900532160
171743540 353470912

Sample Output 3

152594452160

Input

题意翻译

有 $N$ 组写了数字的卡片每组两张,每组卡片需要各放一张到两个袋子中,令两个袋子里数的最大公约数分别为 $X$ 和 $Y$ ,求 $X$ 和 $Y$ 的最小公倍数的最大值。

加入题单

算法标签: