#Lutece0724. 排列

排列

Migrated from Lutece 724 排列

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

给一个数字串ss和正整数dd, 统计ss有多少种不同的排列能被dd整除(可以有前导00)。例如1234341234349090种排列能被22整除,其中末位为22的有3030种,末位为44的有6060种。

Input

输入第一行是一个整数TT,表示测试数据的个数,以下每行一组ssdd,中间用空格隔开。ss保证只包含数字0,1,2,3,4,5,6,7,8,90, 1, 2, 3, 4, 5, 6, 7, 8, 9. |s| <= 11 , d <= 1000

Output

每个数据仅一行,表示能被dd整除的排列的个数。

Samples

7
000 1
001 1
1234567890 1
123434 2
1234 7
12345 17
12345678 29
1
3
3628800
90
3
6
1398

Resources

2013 UESTC ACM Training for Dynamic Programming