Super a ^ B mod C

Source: Internet
Author: User

Given a, B, c, you shoshould quickly calculate the result of a ^ B mod C. (1 <= A, C <= 000000000,1 <= B <= 10 ^ 1000000 ).

Input

There are multiply testcases. Each testcase, there is one line contains three integers A, B and C, separated by a single space.

Output

For each testcase, output an integer, denotes the result of a ^ B mod C.

Sample Input

3 2 42 10 1000

Sample output

124
 
The method for dealing with large numbers is quite classic, and someone else's code is posted to show worship.
view code//A^B %C=A^( B%phi(C)+phi(C) ) %C#include <cstdlib>#include <cstring>#include <cstdio>#include <iostream>#include<string>#include<cmath>using namespace std;typedef __int64 ll;int phi(int x){  int i,j;  int num = x;  for(i = 2; i*i <= x; i++)  {    if(x % i == 0)    {      num = (num/i)*(i-1);      while(x % i == 0)      {        x = x / i;      }    }  }  if(x != 1) num = (num/x)*(x-1);  return num;}ll quickpow(ll m,ll n,ll k){  ll ans=1;  while(n)  {    if(n&1) ans=(ans*m)%k;    n=(n>>1);    m=(m*m)%k;  }  return ans;}char tb[1000015];int main(){  ll a,nb;  int c;  while(scanf("%I64d%s%d",&a,tb,&c)!=EOF)  {    int PHI=phi(c);    ll res=0;    for(int i=0;tb[i];i++)    {      res=(res*10+tb[i]-‘0‘);      if(res>c)break;    }    if(res<=PHI)    {      printf("%I64d\n",quickpow(a,res,c));    }    else    {      res=0;      for(int i=0;tb[i];i++)      {        res=(res*10+tb[i]-‘0‘)%PHI;      }      printf("%I64d\n",quickpow(a,res+PHI,c));    }  }  return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.