D. Almost All Divisors

链接:https://codeforces.com/problemset/problem/1165/D

We guessed some integer number xx. You are given a list of almost all its divisors. Almost all means that there are all divisors except 11and xx in the list.

Your task is to find the minimum possible integer xx that can be the guessed number, or say that the input data is contradictory and it is impossible to find such number.

You have to answer tt independent queries.

Input

The first line of the input contains one integer tt (1≤t≤251≤t≤25) — the number of queries. Then tt queries follow.

The first line of the query contains one integer nn (1≤n≤3001≤n≤300) — the number of divisors in the list.

The second line of the query contains nn integers d1,d2,…,dnd1,d2,…,dn (2≤di≤1062≤di≤106), where didi is the ii-th divisor of the guessed number. It is guaranteed that all values didi are distinct.

Output

For each query print the answer to it.

If the input data in the query is contradictory and it is impossible to find such number xx that the given list of divisors is the list of almost allits divisors, print -1. Otherwise print the minimum possible xx.

Example

input

Copy

2
8
8 2 12 6 4 24 16 3
1
2

output

Copy

48
4

代码:

#include<bits/stdc++.h>
using namespace std;
long long t,n,k,s,x,y,tip;
map<long long ,long long >m;
long long q[10000001];
int main() 
{
	cin>>t;
	while(t--)
	{
		cin>>n;
		m.clear();
		for(int i=1;i<=n;i++)
		{
			cin>>q[i];
			m[q[i]]++;
		}
		sort(q+1,q+1+n);
		x=q[1]*q[n];
		y=sqrt(x);
		int flag=1;
		for(int i=1;i<=n;i++)
		{
			if(x%q[i]!=0)
			flag=0;
		}
		if(flag==0)
		{
			cout<<-1<<endl;
			continue;
		}
		for(long long i=2;i<=y;i++)
		{
			if(x%i==0)
			{
				if(m[i]==1&&m[x/i]==1)
				continue;
				else
				{
					flag=0;
					break;
				}
			}
		}
		if(flag==1)
		cout<<x<<endl;
		else
		cout<<-1<<endl;
	}
}

 

全部评论

相关推荐

11-27 14:21
同济大学 Java
卢来猴祖:给了这薪资关键拿不了几个月就给你踹了呀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务