1 Star 0 Fork 0

阿坚/projecteuler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p029.py 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
阿坚 提交于 2022-05-11 11:56 . 29,30
"""
Problem 29: https://projecteuler.net/problem=29
Consider all integer combinations of ab for 2 <= a <= 5 and 2 <= b <= 5:
2^2=4, 2^3=8, 2^4=16, 2^5=32
3^2=9, 3^3=27, 3^4=81, 3^5=243
4^2=16, 4^3=64, 4^4=256, 4^5=1024
5^2=25, 5^3=125, 5^4=625, 5^5=3125
If they are then placed in numerical order, with any repeats removed, we get
the following sequence of 15 distinct terms:
4, 8, 9, 16, 25, 27, 32, 64, 81, 125, 243, 256, 625, 1024, 3125
How many distinct terms are in the sequence generated by a,b
for 2 <= a <= 100 and 2 <= b <= 100?
"""
# _*_ conding:UTF-8 _*_
'''
@author = Kuperain
@email = kuperain@aliyun.com
@IDE = VSCODE Python3.8.3
@creat_time = 2022/5/11
'''
def solution(alimit: int = 100, blimit:int = 100) -> int:
'''
>>> print(solution(5,5))
15
'''
res = set()
for a in range(2,alimit+1):
for b in range(2,blimit+1):
res.add(a**b)
return len(res)
if __name__ == "__main__":
import doctest
doctest.testmod(verbose=False)
print(solution())
# 9138
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kuperain/projecteuler.git
git@gitee.com:kuperain/projecteuler.git
kuperain
projecteuler
projecteuler
master

搜索帮助