CF1183F.Topforces Strikes Back

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One important contest will take place on the most famous programming platform (Topforces) very soon!

The authors have a pool of nn problems and should choose at most three of them into this contest. The prettiness of the ii -th problem is aia_i . The authors have to compose the most pretty contest (in other words, the cumulative prettinesses of chosen problems should be maximum possible).

But there is one important thing in the contest preparation: because of some superstitions of authors, the prettinesses of problems cannot divide each other. In other words, if the prettinesses of chosen problems are x,y,zx, y, z , then xx should be divisible by neither yy , nor zz , yy should be divisible by neither xx , nor zz and zz should be divisible by neither xx , nor yy . If the prettinesses of chosen problems are xx and yy then neither xx should be divisible by yy nor yy should be divisible by xx . Any contest composed from one problem is considered good.

Your task is to find out the maximum possible total prettiness of the contest composed of at most three problems from the given pool.

You have to answer qq independent queries.

If you are Python programmer, consider using PyPy instead of Python when you submit your code.

输入格式

The first line of the input contains one integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ) — the number of queries.

The first line of the query contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of problems.

The second line of the query contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 2ai21052 \le a_i \le 2 \cdot 10^5 ), where aia_i is the prettiness of the ii -th problem.

It is guaranteed that the sum of nn over all queries does not exceed 21052 \cdot 10^5 .

输出格式

For each query print one integer — the maximum possible cumulative prettiness of the contest composed of at most three problems from the given pool of problems in the query.

输入输出样例

  • 输入#1

    3
    4
    5 6 15 30
    4
    10 6 30 15
    3
    3 4 6
    

    输出#1

    30
    31
    10
    
首页