2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2020-10-08 05:57:47 +00:00
|
|
|
Problem 7: https://projecteuler.net/problem=7
|
|
|
|
|
2018-10-19 12:48:28 +00:00
|
|
|
By listing the first six prime numbers:
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
2, 3, 5, 7, 11, and 13
|
|
|
|
|
|
|
|
We can see that the 6th prime is 13. What is the Nth prime number?
|
|
|
|
"""
|
2018-10-19 12:48:28 +00:00
|
|
|
from math import sqrt
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
2020-10-08 05:57:47 +00:00
|
|
|
def is_prime(num: int) -> bool:
|
|
|
|
"""Determines whether the given number is prime or not"""
|
|
|
|
if num == 2:
|
2018-10-19 12:48:28 +00:00
|
|
|
return True
|
2020-10-08 05:57:47 +00:00
|
|
|
elif num % 2 == 0:
|
2018-10-19 12:48:28 +00:00
|
|
|
return False
|
|
|
|
else:
|
2020-10-08 05:57:47 +00:00
|
|
|
sq = int(sqrt(num)) + 1
|
2019-07-16 23:09:53 +00:00
|
|
|
for i in range(3, sq, 2):
|
2020-10-08 05:57:47 +00:00
|
|
|
if num % i == 0:
|
2018-10-19 12:48:28 +00:00
|
|
|
return False
|
|
|
|
return True
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
2020-10-08 05:57:47 +00:00
|
|
|
def solution(nth: int = 10001) -> int:
|
2019-07-16 23:09:53 +00:00
|
|
|
"""Returns the n-th prime number.
|
2019-08-19 13:37:49 +00:00
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
>>> solution(6)
|
|
|
|
13
|
|
|
|
>>> solution(1)
|
|
|
|
2
|
|
|
|
>>> solution(3)
|
|
|
|
5
|
|
|
|
>>> solution(20)
|
|
|
|
71
|
|
|
|
>>> solution(50)
|
|
|
|
229
|
|
|
|
>>> solution(100)
|
|
|
|
541
|
2020-10-08 05:57:47 +00:00
|
|
|
>>> solution()
|
|
|
|
104743
|
2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2020-10-08 05:57:47 +00:00
|
|
|
count = 0
|
|
|
|
number = 1
|
|
|
|
while count != nth and number < 3:
|
|
|
|
number += 1
|
|
|
|
if is_prime(number):
|
|
|
|
count += 1
|
|
|
|
while count != nth:
|
|
|
|
number += 2
|
|
|
|
if is_prime(number):
|
|
|
|
count += 1
|
|
|
|
return number
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2019-08-19 13:37:49 +00:00
|
|
|
print(solution(int(input().strip())))
|