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 nn machines, and the power of the ii -th machine is aia_i .

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 xx , then choose one machine and reduce the power of its machine by xx times, and at the same time increase the power of one another machine by xx 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 ii and jj , and one integer xx such that xx is a divisor of aia_i , and change powers as following: ai=aixa_i = \frac{a_i}{x} , aj=ajxa_j = a_j \cdot 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 nn ( 2n51042 \le n \le 5 \cdot 10^4 ) — the number of machines.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai1001 \le a_i \le 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 44 -th machine by 22 times, and increase the power of the 11 -st machine by 22 times, then the powers will be: [2,2,3,2,5][2, 2, 3, 2, 5] .

In the second example, the farmer can reduce the power of the 33 -rd machine by 22 times, and increase the power of the 22 -nd machine by 22 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.

首页