Codeforces Round #191 (Div. 2) C. Magic Five

There is a long plate s containing n digits. Iahub wants to delete some digits (possibly none, but he is not allowed to delete all the digits) to form his "magic number" on the plate, a number that is divisible by 5. Note that, the resulting number may contain leading zeros.

Now Iahub wants to count the number of ways he can obtain magic number, modulo 1000000007 (109 + 7). Two ways are different, if the set of deleted positions in s differs.

Look at the input part of the statement, s is given in a special form.

Input

In the first line you're given a string a (1 ≤ |a| ≤ 105), containing digits only. In the second line you're given an integer k (1 ≤ k ≤ 109). The plate s is formed by concatenating k copies of a together. That is n = |ak.

Output

Print a single integer — the required number of ways modulo 1000000007 (109 + 7).

Examples
Input
1256
1
Output
4
Input
13990
2
Output
528
Input
555
2
Output
63
Note

In the first case, there are four possible ways to make a number that is divisible by 5: 5, 15, 25 and 125.

In the second case, remember to concatenate the copies of a. The actual plate is 1399013990.

In the third case, except deleting all digits, any choice will do. Therefore there are 26 - 1 = 63 possible ways to delete digits.


分析:快速幂费马小定理乱搞一番。


#include <cstdio>
#include <iostream>
#include <cstring> 
#define MAXN 1000000007
using namespace std;
char s[100005];
long long k,ans;
long long ksm(long long a,long long b)
{
	long long ans = 1;
	while(b)
	{
		if(b & 1 == 1) ans = (ans * a) % MAXN;
		a = a*a % MAXN;
		b >>= 1;
	}
	return ans;
}
int main()
{
	cin.sync_with_stdio(false);
	cin>>s;
	long long n = strlen(s);
	cin>>k;
	long long plus = ((ksm(2,n*k) - 1)*ksm((ksm(2,n)-1+MAXN)%MAXN,MAXN-2) % MAXN + MAXN) % MAXN;
	for(int i = 0;i < n;i++) 
	 if(s[i] == '0' || s[i] == '5') ans = (ans + ksm(2,i)*plus) % MAXN;
	cout<<ans<<endl;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值