代码拉取完成,页面将自动刷新
"""
Problem 97: https://projecteuler.net/problem=97
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 solution(d: int = 10) -> int:
"""
(28433 * (2 ** 7830457 + 1))mod(10^d)
"""
tmp = pow(2, 7830457, 10**d)
return 28433*(tmp+1) % (10**d)
if __name__ == "__main__":
from doctest import testmod
testmod()
print(solution(10))
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。