Skip to content

Hacktoberfest: Add a solution for Project Euler 50 #2703

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0da5cea
added doctests in modular_exponential.py
Iqrar99 Feb 20, 2020
e658085
Merge branch 'master' of https://github.com/Iqrar99/Python
Iqrar99 Feb 20, 2020
4183239
added doctests in modular_exponential.py
Iqrar99 Feb 20, 2020
3856fa0
added URL link
Iqrar99 Feb 20, 2020
82aed44
Merge branch 'master' of https://github.com/TheAlgorithms/Python
Iqrar99 Feb 20, 2020
d3a4913
Merge branch 'master' of https://github.com/TheAlgorithms/Python
Iqrar99 Feb 21, 2020
b4e33ab
Merge branch 'master' of https://github.com/TheAlgorithms/Python
Iqrar99 Oct 1, 2020
133838c
Merge branch 'master' of https://github.com/TheAlgorithms/Python
Iqrar99 Oct 3, 2020
cb8ab38
updating DIRECTORY.md
Oct 3, 2020
7824282
Add problem 50 solution
Iqrar99 Oct 3, 2020
8dbef02
Merge branch 'pe-50' of https://github.com/Iqrar99/Python into pe-50
Iqrar99 Oct 3, 2020
c933fe8
updating DIRECTORY.md
Oct 3, 2020
a2acaf8
Fix some mistakes
Iqrar99 Oct 4, 2020
f4b32b2
Merge branch 'pe-50' of https://github.com/Iqrar99/Python into pe-50
Iqrar99 Oct 4, 2020
e75158b
Move the import statement lower
Iqrar99 Oct 5, 2020
39622e7
Merge branch 'master' into pe-50
Iqrar99 Oct 5, 2020
eebca1e
Add default argument into main function
Iqrar99 Oct 11, 2020
276feaa
Merge branch 'pe-50' of https://github.com/Iqrar99/Python into pe-50
Iqrar99 Oct 11, 2020
c45bfe3
Improve the code
Iqrar99 Oct 12, 2020
e51429f
Small fix
Iqrar99 Oct 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,8 @@
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_48/sol1.py)
* Problem 49
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_49/sol1.py)
* Problem 50
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_50/sol1.py)
* Problem 52
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_52/sol1.py)
* Problem 53
Expand Down
Empty file.
107 changes: 107 additions & 0 deletions project_euler/problem_50/sol1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
"""
Consecutive prime sum

Problem 50
https://projecteuler.net/problem=50

The prime 41, can be written as the sum of six consecutive primes:

41 = 2 + 3 + 5 + 7 + 11 + 13

This is the longest sum of consecutive primes that adds to
a prime below one-hundred.

The longest sum of consecutive primes below one-thousand that adds to a prime,
contains 21 terms, and is equal to 953.

Which prime, below one-million, can be written as the sum of
the most consecutive primes?

Solution:

First of all, we need to generate all prime numbers
from 2 to the closest prime number with 1000000.
Then, use sliding window to get the answer.
"""

from math import floor, sqrt


def is_prime(number: int) -> bool:
"""
function to check whether a number is a prime or not.
>>> is_prime(2)
True
>>> is_prime(6)
False
>>> is_prime(1)
False
>>> is_prime(-7000)
False
>>> is_prime(104729)
True
"""

if number < 2:
return False

for n in range(2, floor(sqrt(number)) + 1):
if number % n == 0:
return False

return True


def solution(constraint: int = 10 ** 6):
"""
Return the problem solution.
>>> solution(10000)
9521
>>> solution(1000)
953
>>> solution(50)
58
"""

prime_list = [2] + [x for x in range(3, constraint, 2) if is_prime(x)]

cumulative_sum = []
tmp = 0
for prime in prime_list:
tmp += prime
if tmp < constraint:
cumulative_sum.append(tmp)
else:
break

upper_limit_idx = 0
for i in range(len(prime_list)):
if prime_list[i] < constraint:
upper_limit_idx = i
else:
break

max_count = -1
answer = 0
for number in reversed(cumulative_sum):
count_prime = cumulative_sum.index(number) + 1

if not is_prime(number):
tmp = number

for i in range(upper_limit_idx):
count_prime -= 1
tmp -= prime_list[i]

if is_prime(tmp) or tmp < 0:
break

if max_count < count_prime:
max_count = count_prime
answer = tmp

return answer


if __name__ == "__main__":
print(solution())