您的位置:首页 > 其它

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

2016-05-10 17:18 309 查看
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 = |a|·k.

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;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: