代码拉取完成,页面将自动刷新
"""
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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。