CF300E.Empire Strikes Back

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In a far away galaxy there is war again. The treacherous Republic made kk precision strikes of power aia_{i} on the Empire possessions. To cope with the republican threat, the Supreme Council decided to deal a decisive blow to the enemy forces.

To successfully complete the conflict, the confrontation balance after the blow should be a positive integer. The balance of confrontation is a number that looks like , where p=n!p=n! ( nn is the power of the Imperial strike), . After many years of war the Empire's resources are low. So to reduce the costs, nn should be a minimum positive integer that is approved by the commanders.

Help the Empire, find the minimum positive integer nn , where the described fraction is a positive integer.

输入格式

The first line contains integer kk (1<=k<=106)(1<=k<=10^{6}) . The second line contains kk integers a1,a2,...,aka_{1},a_{2},...,a_{k} (1<=ai<=107)(1<=a_{i}<=10^{7}) .

输出格式

Print the minimum positive integer nn , needed for the Empire to win.

Please, do not use the %lld to read or write 64-but integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.

输入输出样例

  • 输入#1

    2
    1000 1000
    

    输出#1

    2000
  • 输入#2

    1
    2
    

    输出#2

    2
首页