#ABC125C. GCD on Blackboard
GCD on Blackboard
题目描述
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.
黑板上写着 个整数, 。
你将从中选择一个,用一个在 和 (含)之间的整数替换它,这个整数可能与最初写下的整数相同。
移动后,找出黑板上 个整数的最大公约数。
输入格式
输入内容按以下格式标准输入:
输出格式
移动后,在黑板上打印 整数的最大公约数。
样例 #1
样例输入 #1
3
7 6 8
样例输出 #1
2
样例 #2
样例输入 #2
3
12 15 18
样例输出 #2
6
样例 #3
样例输入 #3
2
1000000000 1000000000
样例输出 #3
1000000000
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
如果我们用 代替 ,黑板上三个整数的最大公约数将是 ,这是可能的最大值。
样例 解释
我们可以用整数本身替换整数。