CF1113B.Sasha and Magnetic Machines
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day Sasha visited the farmer 2D and his famous magnetic farm. On this farm, the crop grows due to the influence of a special magnetic field. Maintaining of the magnetic field is provided by n machines, and the power of the i -th machine is ai .
This year 2D decided to cultivate a new culture, but what exactly he didn't say. For the successful growth of the new culture, it is necessary to slightly change the powers of the machines. 2D can at most once choose an arbitrary integer x , then choose one machine and reduce the power of its machine by x times, and at the same time increase the power of one another machine by x times (powers of all the machines must stay positive integers). Note that he may not do that if he wants. More formally, 2D can choose two such indices i and j , and one integer x such that x is a divisor of ai , and change powers as following: ai=xai , aj=aj⋅x
Sasha is very curious, that's why he wants to calculate the minimum total power the farmer can reach. There are too many machines, and Sasha can't cope with computations, help him!
输入格式
The first line contains one integer n ( 2≤n≤5⋅104 ) — the number of machines.
The second line contains n integers a1,a2,…,an ( 1≤ai≤100 ) — the powers of the machines.
输出格式
Print one integer — minimum total power.
输入输出样例
输入#1
5 1 2 3 4 5
输出#1
14
输入#2
4 4 2 4 4
输出#2
14
输入#3
5 2 4 2 3 7
输出#3
18
说明/提示
In the first example, the farmer can reduce the power of the 4 -th machine by 2 times, and increase the power of the 1 -st machine by 2 times, then the powers will be: [2,2,3,2,5] .
In the second example, the farmer can reduce the power of the 3 -rd machine by 2 times, and increase the power of the 2 -nd machine by 2 times. At the same time, the farmer can leave is be as it is and the total power won't change.
In the third example, it is optimal to leave it be as it is.