Zvonko is playing with digits again, even though his mother has warned him that he is doing too much math and should go outside to play with his friends.
In his latest game, Zvonko looks for multiples of an integer , composed only of certain digits. A multiple of is any number divisible by .
In order to ruin Zvonko's fun, his mother decided to get a program that solves the problem. Write a program that calculates how many multiples of are between and (inclusive), such that, when written in decimal, they contain only certain allowed digits.
Input Specification
The first line of input contains three integers , and . The second line contains the allowed digits. The digits will be given with no spaces, sorted in increasing order and without duplicates.
Output Specification
Output the number of multiples Zvonko can make on a single line.
Sample Input 1
2 1 20
0123456789
Sample Output 1
10
Sample Input 2
6 100 9294
23689
Sample Output 2
111
Sample Input 3
5 4395 9999999999
12346789
Sample Output 3
0
Comments