-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
Hacktoberfest: Project Euler Solution Problem 77 #2782
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,68 @@ | ||||||||
""" | ||||||||
Prime summations | ||||||||
Problem 77 | ||||||||
|
||||||||
It is possible to write ten as the sum of primes | ||||||||
in exactly five different ways: | ||||||||
|
||||||||
7 + 3 | ||||||||
5 + 5 | ||||||||
5 + 3 + 2 | ||||||||
3 + 3 + 2 + 2 | ||||||||
2 + 2 + 2 + 2 + 2 | ||||||||
|
||||||||
What is the first value which can be written | ||||||||
as the sum of primes in over five thousand different ways? | ||||||||
""" | ||||||||
|
||||||||
|
||||||||
def solution(length=5000) -> int: | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
"""Ways to write sum of primes | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
|
||||||||
Keyword arguments: | ||||||||
amount -- amount of different ways (default 5000) | ||||||||
|
||||||||
Passing no parameters returns the result | ||||||||
>>> solution() | ||||||||
71 | ||||||||
Comment on lines
+26
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please include more |
||||||||
""" | ||||||||
|
||||||||
primes = [ | ||||||||
2, | ||||||||
3, | ||||||||
5, | ||||||||
7, | ||||||||
11, | ||||||||
13, | ||||||||
17, | ||||||||
19, | ||||||||
23, | ||||||||
29, | ||||||||
31, | ||||||||
37, | ||||||||
41, | ||||||||
43, | ||||||||
47, | ||||||||
53, | ||||||||
59, | ||||||||
61, | ||||||||
67, | ||||||||
71, | ||||||||
73, | ||||||||
79, | ||||||||
] | ||||||||
|
||||||||
target = 11 | ||||||||
while True: | ||||||||
ways = [1] + [0] * target | ||||||||
for p in primes: | ||||||||
for i in range(p, target + 1): | ||||||||
ways[i] += ways[i - p] | ||||||||
if ways[target] > length: | ||||||||
break | ||||||||
target += 1 | ||||||||
return target | ||||||||
|
||||||||
|
||||||||
if __name__ == "__main__": | ||||||||
print(solution()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add the reference link to the problem