1 Star 0 Fork 0

阿坚/projecteuler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p097.py 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿坚 提交于 2022-06-10 00:12 . 97,doned
"""
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))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kuperain/projecteuler.git
git@gitee.com:kuperain/projecteuler.git
kuperain
projecteuler
projecteuler
master

搜索帮助