博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cf(数学思维题)
阅读量:5224 次
发布时间:2019-06-14

本文共 2382 字,大约阅读时间需要 7 分钟。

Pasha has recently bought a new phone jPager and started adding his friends' phone numbers there. Each phone number consists of exactly n digits.

Also Pasha has a number k and two sequences of length n / k (n is divisible by ka1, a2, ..., an / k and b1, b2, ..., bn / k. Let's split the phone number into blocks of length k. The first block will be formed by digits from the phone number that are on positions 12,..., k, the second block will be formed by digits from the phone number that are on positions k + 1k + 2, ..., k and so on. Pasha considers a phone number good, if the i-th block doesn't start from the digit bi and is divisible by ai if represented as an integer.

To represent the block of length k as an integer, let's write it out as a sequence c1c2,...,ck. Then the integer is calculated as the result of the expression c1·10k - 1 + c2·10k - 2 + ... + ck.

Pasha asks you to calculate the number of good phone numbers of length n, for the given kai and bi. As this number can be too big, print it modulo 109 + 7.

Input

The first line of the input contains two integers n and k (1 ≤ n ≤ 100 0001 ≤ k ≤ min(n, 9)) — the length of all phone numbers and the length of each block, respectively. It is guaranteed that n is divisible by k.

The second line of the input contains n / k space-separated positive integers — sequence a1, a2, ..., an / k (1 ≤ ai < 10k).

The third line of the input contains n / k space-separated positive integers — sequence b1, b2, ..., bn / k (0 ≤ bi ≤ 9).

Output

Print a single integer — the number of good phone numbers of length n modulo 109 + 7.

Sample test(s)
input
6 238 56 497 3 4
output
8
input
8 21 22 3 445 4 3 2
output
32400
Note

In the first test sample good phone numbers are: 000000000098005600005698380000380098385600385698.

题意是输入n,k,n表示要得到一串n个数字的号码,k表示要将这段号码分成若干段每一段k个数字,接下来输入n/k个数字,分别表示每一段的数字要是能整出这个数的k位数字,接下来再输入n/k个数字,表示该段数字不能以bi数字开头。

然后,就靠自己的思维去想了,其实是水题。。(求乘方的函数最好自己写,pow如果哪里搞错了我们连查错都无从下手)

#include 
#include
#include
#include
#include
#define mod 1000000007using namespace std;typedef long long ll;ll a[100010],b[100010];ll cf(ll x){ ll s=1; for(int i=0;i
>n>>k; for(ll i=0;i
>a[i]; for(ll i=0;i
>b[i]; ll cc=cf(k)-1,s=1; for(int i=0;i

转载于:https://www.cnblogs.com/martinue/p/5490488.html

你可能感兴趣的文章
桥接模式-Bridge(Java实现)
查看>>
svn客户端清空账号信息的两种方法
查看>>
springboot添加servlet的两种方法
查看>>
java的Array和List相互转换
查看>>
layui父页面执行子页面方法
查看>>
如何破解域管理员密码
查看>>
Windows Server 2008 R2忘记管理员密码后的解决方法
查看>>
IE11兼容IE8的设置
查看>>
windows server 2008 R2 怎么集成USB3.0驱动
查看>>
Foxmail:导入联系人
查看>>
vue:axios二次封装,接口统一存放
查看>>
vue中router与route的区别
查看>>
js 时间对象方法
查看>>
网络请求返回HTTP状态码(404,400,500)
查看>>
Spring的JdbcTemplate、NamedParameterJdbcTemplate、SimpleJdbcTemplate
查看>>
Mac下使用crontab来实现定时任务
查看>>
303. Range Sum Query - Immutable
查看>>
图片加载失败显示默认图片占位符
查看>>
【★】浅谈计算机与随机数
查看>>
《代码阅读方法与实现》阅读笔记一
查看>>