101825: [AtCoder]ABC182 F - Valid payments

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

In Republic of AtCoder, $N$ kinds of coins are used: $A_1$-yen, $A_2$-yen, $A_3$-yen, $\dots$, $A_N$-yen coins.
Here, $A_1 = 1$ holds, and for each $i$ such that $1 \le i \lt N$, $A_i \lt A_{i + 1}$ holds and $A_{i + 1}$ is a multiple of $A_i$.

At some shop in this country, Lunlun the dog bought an $X$-yen product by giving $y\ (\ge X)$ yen to the clerk and receiving the change of $y - X$ yen from the clerk. (The change may have been $0$ yen.)
Here, both Lunlun and the clerk used the minimum number of coins needed to represent those amounts of money.
Additionally, the clerk did not return any kind of coins that Lunlun gave him.

Given $X$, find the number of possible values for $y$.

Constraints

  • $1 \le N \le 50$
  • $1 = A_1 \lt A_2 \lt A_3 \lt \dots \lt A_N \le 10^{15}$
  • $A_{i + 1}$ is a multiple of $A_i$. $(1 \le i \lt N)$
  • $1 \le X \le 10^{15}$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$N$ $X$
$A_1 \hspace{7pt} A_2 \hspace{7pt} A_3 \hspace{5pt} \dots\ \hspace{5pt} A_N$

Output

Print the number of possible values for $y$.


Sample Input 1

3 9
1 5 10

Sample Output 1

3

$y$ can be $9$, $10$, or $14$.
For example, when $y = 14$, Lunlun gives one $10$-yen coin and four $1$-yen coins, and the clerk returns one $5$-yen coin.
Here, the clerk is not returning any kind of coins that Lunlun gives him, satisfying the requirement.


Sample Input 2

5 198
1 5 10 50 100

Sample Output 2

5

$y$ can be $198$, $200$, $203$, $208$, or $248$.


Sample Input 3

4 44
1 4 20 100

Sample Output 3

4

$y$ can be $44$, $60$, $100$, or $104$.


Sample Input 4

9 11837029798
1 942454037 2827362111 19791534777 257289952101 771869856303 3859349281515 30874794252120 216123559764840

Sample Output 4

21

Input

题意翻译

有 $N$ 种硬币,面值分别为 $A_1,A_2,A_3 \dots A_N$ 元,满足 $A_1=1$,且对于所有 $1 \le i < N$,有 $A_i<A_{i+1}$ 且 $A_i|A_{i+1}$ 。 lunlun 用 $y(\ge X)$ 元 买了一件 $X$ 元的商品,收到了 $y-X$ 的找零。lunlun 和收银员都用了最少数量的硬币来付钱。特殊地,收银员没有和 lunlun 用相同种类的硬币。 给出 $X$,求 $y$ 有多少种可能。

加入题单

算法标签: