fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.math.BigInteger;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main(String[] Args) {
  12. Scanner input = new Scanner(System.in);
  13.  
  14. System.out.println("\n\nHow many sets?");
  15. int s = input.nextInt();
  16. BigInteger[] X = new BigInteger[s];
  17. for (int i = 0; i < s; i++) {
  18. System.out.println("A: ");
  19. BigInteger A = input.nextBigInteger();
  20. System.out.println("B: ");
  21. BigInteger B = input.nextBigInteger();
  22. System.out.println("M: ");
  23. BigInteger M = input.nextBigInteger();
  24. X[i] = A.modPow(B, M);
  25. }
  26. for (int i = 0; i < X.length; i++) {
  27. System.out.println(X[i]);
  28. }
  29. }
  30. }
Success #stdin #stdout 0.15s 321344KB
stdin
1
2000
100
9
stdout
How many sets?
A: 
B: 
M: 
7