参考代码:
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); BigInteger a = scanner.nextBigInteger(); BigInteger b = scanner.nextBigInteger(); BigInteger p = scanner.nextBigInteger(); String res = a.modPow(b, p).toString();//BigInteger内置方法,模意义下取幂 // long a = scanner.nextLong(); // long b = scanner.nextLong(); // long p = scanner.nextLong(); // long res = modPow(a % p, b, p);//先对a进行一次取余 System.out.print(res); } // 递归 // public static long modPow(long a, long b, long p) // { if(b == 0) // return 1; // boolean isOdd = (b & 1) == 1; // long res = modPow(a, b >> 1, p); // if(isOdd) // return (res * res % p * a % p) % p; // else // return res * res % p; // } // 迭代方法 // public static long modPow(long a, long b, long p) // { long res = 1; // while(b > 0) // { if((b & 1) == 1) // res *= a; // a *= a; // res %= p; // a %= p; // b >>= 1; // } // return res; // } }
0.0分
0 人评分
C二级辅导-进制转换 (C语言代码)浏览:657 |
C语言程序设计教程(第三版)课后习题9.2 (Java代码)浏览:696 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:624 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:751 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
printf基础练习2 (C语言代码)浏览:653 |
1024题解浏览:879 |
1071题解浏览:584 |