CF93E.Lostborn

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Igor K. very much likes a multiplayer role playing game WineAge II. Who knows, perhaps, that might be the reason for his poor performance at the university. As any person who plays the game, he is interested in equipping his hero with as good weapon and outfit as possible.

One day, as he was reading the game's forum yet again, he discovered a very interesting fact. As it turns out, each weapon in the game is characterised with kk different numbers: a1,...,aka_{1},...,a_{k} . They are called hit indicators and according to the game developers' plan they are pairwise coprime.

The damage that is inflicted during a hit depends not only on the weapon's characteristics, but also on the hero's strength parameter. Thus, if the hero's strength equals nn , than the inflicted damage will be calculated as the number of numbers on the segment , that aren't divisible by any hit indicator aia_{i} .

Recently, having fulfilled another quest, Igor K. found a new Lostborn sword. He wants to know how much damage he will inflict upon his enemies if he uses it.

输入格式

The first line contains two integers: nn and kk ( 1<=n<=10131<=n<=10^{13} , 1<=k<=1001<=k<=100 ). They are the indicator of Igor K's hero's strength and the number of hit indicators.

The next line contains space-separated kk integers aia_{i} ( 1<=ai<=10001<=a_{i}<=1000 ). They are Lostborn sword's hit indicators. The given kk numbers are pairwise coprime.

输出格式

Print the single number — the damage that will be inflicted by Igor K.'s hero when he uses his new weapon.

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

输入输出样例

  • 输入#1

    20 3
    2 3 5
    

    输出#1

    6
    
  • 输入#2

    50 2
    15 8
    

    输出#2

    41
    
首页