fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. long comp = 600851475143L;
  9. long sqrt = (long) Math.sqrt(comp);
  10.  
  11. for(long i = 3; i <= sqrt; i += 2)
  12. {
  13. while(comp % i == 0)
  14. {
  15. comp /= i;
  16. System.out.println(i);
  17. }
  18. }
  19. }
  20. }
Success #stdin #stdout 0.07s 215488KB
stdin
Standard input is empty
stdout
71
839
1471
6857