跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2116. Roman and Numbers

    ID: 2122 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>位运算枚举组合数学动态规划数论数学算法思想提高难度共享题库Codeforces英文题面题目来源题面语言

Roman and Numbers

题目描述

D. Roman and Numbers
time limit per test
4 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Roman is a young mathematician, very famous in Uzhland. Unfortunately, Sereja doesn't think so. To make Sereja change his mind, Roman is ready to solve any mathematical problem. After some thought, Sereja asked Roma to find, how many numbers are close to number n, modulo m.

Number x is considered close to number n modulo m, if:

  • it can be obtained by rearranging the digits of number n,
  • it doesn't have any leading zeroes,
  • the remainder after dividing number x by m equals 0.

Roman is a good mathematician, but the number of such numbers is too huge for him. So he asks you to help him.

Input

The first line contains two integers: n (1≤n<1018) and m (1≤m≤100).

Output

In a single line print a single integer − the number of numbers close to number n modulo m.

Examples
Input
104 2
Output
3
Input
223 4
Output
1
Input
7067678 8
Output
47
Note

In the first sample the required numbers are: 104, 140, 410.

In the second sample the required number is 232.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1715 题。保留原作者与原赛事署名。