fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.math.BigInteger;
  4.  
  5. class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. BigInteger x=new BigInteger("1");
  10. BigInteger p=new BigInteger("4294967296");
  11. System.out.println(x.modInverse(p));
  12. }
  13. }
Success #stdin #stdout 0.03s 245632KB
stdin
Standard input is empty
stdout
1