1046 A^B Mod C
Posted watchfree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1046 A^B Mod C相关的知识,希望对你有一定的参考价值。
1046 A^B Mod C
基准时间限制:1 秒 空间限制:131072 KB
给出3个正整数A B C,求A^B Mod C。
例如,3 5 8,3^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的主要内容,如果未能解决你的问题,请参考以下文章