Project Euler #7: 10001st prime
Question
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
What is the 10 001st prime number?
Answer : 104743
Hacker Rank Question
Solution
What is the 10 001st prime number?
Answer : 104743
Hacker Rank Question
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | import java.util.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int[] arr = new int[10000000]; for(int i=2;i<10000000;i++) { arr[i]=i; } for(int i=2;i<10000000;i++) for(int j=i+i;j<10000000;j+=i) arr[j]=0; int t = in.nextInt(); for(int a0 = 0; a0 < t; a0++){ int n = in.nextInt(); int count=0; for(int j=2;j<10000000;j++) { if(arr[j]!=0) { count++; if(count==n) { System.out.println(j); break; } } } } } } |
Comments
Post a Comment