1639.Lostborn

Time Limit: 1s Memory Limit: 256MB

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 $k$ different numbers: $a_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 n, than the inflicted damage will be calculated as the number of numbers on the segment $[1,n]$, that aren't divisible by any hit indicator $a_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.

Input Format(From the terminal/stdin)

The first line contains two integers: $n$ and $k (1 \le n \le 10^{13}, 1 \le k \le 100)$. They are the indicator of Igor K's hero's strength and the number of hit indicators.

The next line contains space-separated $k integers $a_i (1 \le a_i \le 1000)$. They are Lostborn sword's hit indicators. The given $k$ numbers are pairwise coprime.

Output Format(To the terminal/stdout)

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

Sample Input 1

Copy
20 3
2 3 5
  · \n
 · · \n

Sample Output 1

Copy
6
 \n

Sample Input 2

Copy
50 2
15 8
  · \n
  · \n

Sample Output 2

Copy
41
  \n

Submit

请先 登录

© 2025 FAQs