码迷,mamicode.com
首页 > 其他好文 > 详细

1046 A^B Mod C

时间:2016-04-03 01:44:55      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

1046 A^B Mod C

基准时间限制:秒 空间限制:131072 KB

给出3个正整数A B C,求A^B Mod C

例如,3 5 83^5 Mod 8 = 3

Input

3个正整数A B C,中间用空格分隔。(1 <= A,B,C <= 10^9)

Output

输出计算结果

Input示例

3 5 8

Output示例

3

--------------
快速幂 
 */
import java.util.Scanner;
public class Main1 {
     static long PowerMod(long a,long b,long c){
         long ans=1;
         a%=c;
         while(b>0){
             if((b&1)==1)
                 ans=(ans*a)%c;
                 a=(a*a)%c;
                 b>>=1;
             
         }
         return ans;
     }
    

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
            long a=sc.nextLong();
            long b=sc.nextLong();
            long c=sc.nextLong();
            System.out.println(PowerMod(a,b,c));
        }
        sc.close();
    }

}

 

1046 A^B Mod C

标签:

原文地址:http://www.cnblogs.com/watchfree/p/5348674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!