100 atcoder#ABC125C. [ABC125C] GCD on Blackboard
[ABC125C] GCD on Blackboard
Score : points
Problem Statement
There are integers, , written on the blackboard.
You will choose one of them and replace it with an integer of your choice between and (inclusive), possibly the same as the integer originally written.
Find the maximum possible greatest common divisor of the integers on the blackboard after your move.
Constraints
- All values in input are integers.
Output
Input is given from Standard Input in the following format:
N
A_1 A_2 ... A_N
Output
Print the maximum possible greatest common divisor of the integers on the blackboard after your move.
3
7 6 8
2
If we replace with , the greatest common divisor of the three integers on the blackboard will be , which is the maximum possible value.
3
12 15 18
6
2
1000000000 1000000000
1000000000
We can replace an integer with itself.