#Lutece0849. A^B%C
A^B%C
Migrated from Lutece 849 A^B%C
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
经典的问题可以用快速幂算法解决,先在考虑一个该问题的升级版。我们用如下函数生成一个位进制数:
long long a[maxn];
void f(int seed,int n,int k,int p)
{
a[0]=seed%k;
for(int i=1;i<n;i++)
a[i]=a[i-1]*p%k;
}
函数执行完毕后,到依次从高位到低位表示这个数的每一位。
如生成了十进制数,生成二进制数,生成进制数,即。
令:
再给你一个十进制数,请计算出的十进制答案模的结果。
Input
输入行:
- 第一行:
- 第二行:
- 第三行:
输入保证不会出现。
Output
输出一个数,的十进制答案模。
Samples
1 2 10 2
2 1 10 5
10
4
Resources
2014 UESTC ACM Training for Math