Package

Source Code of p097

/*
* Solution to Project Euler problem 97
* By Nayuki Minase
*
* http://nayuki.eigenstate.org/page/project-euler-solutions
* https://github.com/nayuki/Project-Euler-solutions
*/

import java.math.BigInteger;


public final class p097 implements EulerSolution {
 
  public static void main(String[] args) {
    System.out.println(new p097().run());
  }
 
 
  public String run() {
    BigInteger modulus = BigInteger.TEN.pow(10);
    BigInteger n = BigInteger.valueOf(2).modPow(BigInteger.valueOf(7830457), modulus);
    n = n.multiply(BigInteger.valueOf(28433)).mod(modulus);
    n = n.add(BigInteger.ONE).mod(modulus);
    return String.format("%010d", n);
  }
 
}
TOP

Related Classes of p097

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.