8000 Created problem_97 in project euler by Kush1101 · Pull Request #2476 · TheAlgorithms/Python · GitHub
[go: up one dir, main page]

Skip to content

Created problem_97 in project euler #2476

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

Merged
merged 8 commits into from
Sep 25, 2020
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Add files via upload
  • Loading branch information
Kush1101 authored Sep 25, 2020
commit 0dacfdfd78942fcec057a2dd5a4df1c90b44475c
31 changes: 31 additions & 0 deletions project_euler/problem_97/sol1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
"""
The first known prime found to exceed one million digits was discovered in 1999,
and is a Mersenne prime of the form 2**6972593 − 1; it contains exactly 2,098,960
digits. Subsequently other Mersenne primes, of the form 2**p − 1, have been found
which contain more digits.
However, in 2004 there was found a massive non-Mersenne prime which contains
2,357,207 digits: (28433 * (2 ** 7830457 + 1)).

Find the last ten digits of this prime number.
"""


def compute_digits(n: int) -> str:
"""
Returns the last n digits of NUMBER.
>>> compute_digits(10)
'8740021009'
>>> compute_digits(-1)
-1
>>> compute_digits(8.3)
-1
"""
if n < 0 or not isinstance(n, int):
return -1
MODULUS = 10 ** n
NUMBER = 28433 * (pow(2, 7830457, MODULUS) + 1)
return str(NUMBER % MODULUS)


if __name__ == "__main__":
print(f"{compute_digits(10)}")
0