CF299A.Ksusha and Array

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Ksusha is a beginner coder. Today she starts studying arrays. She has array a1,a2,...,ana_{1},a_{2},...,a_{n} , consisting of nn positive integers.

Her university teacher gave her a task. Find such number in the array, that all array elements are divisible by it. Help her and find the number!

输入格式

The first line contains integer nn (1<=n<=105)(1<=n<=10^{5}) , showing how many numbers the array has. The next line contains integers a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=109)(1<=a_{i}<=10^{9}) — the array elements.

输出格式

Print a single integer — the number from the array, such that all array elements are divisible by it. If such number doesn't exist, print -1.

If there are multiple answers, you are allowed to print any of them.

输入输出样例

  • 输入#1

    3
    2 2 4
    

    输出#1

    2
    
  • 输入#2

    5
    2 1 3 1 6
    

    输出#2

    1
    
  • 输入#3

    3
    2 3 5
    

    输出#3

    -1
    
首页