博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Project Euler]Problem 29
阅读量:5023 次
发布时间:2019-06-12

本文共 807 字,大约阅读时间需要 2 分钟。

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 ab for 2 ≤a ≤ 100 and 2 ≤b ≤100?

 

Answer:

可以直接求解,没什么技巧

distlist = []for a in range(2, 101):    for b in range(2, 101):        if a**b not in distlist:            distlist.append(a**b)print(len(distlist)) 看过里面别人的答复,还有一种更简洁的,就是利用set来删除重复元素。这样只需要一句话就可以解决 len(set(a**b for a in range(2, 101) for b in range(2, 101)))

转载于:https://www.cnblogs.com/herbert/archive/2012/09/27/2706333.html

你可能感兴趣的文章
将博客搬至CSDN
查看>>
Spring AOP编程
查看>>
2017.2.18[codevs3311][bzoj3668]NOI2014D1T1起床困难综合症
查看>>
MySQL表的四种分区类型
查看>>
最全的分区类型及详解
查看>>
Python 类中__init__()方法中的形参与如何修改类中属性的值
查看>>
9.1.3 前端 - HTML body标签 - 文本样式
查看>>
ACID属性
查看>>
cnpm不是内部命令的解决方案:配置环境变量
查看>>
7系列FPGA远程更新方案-QuickBoot(转)
查看>>
导出帐号和权限脚本
查看>>
markdown公式编辑参考
查看>>
利用运行时给模型赋值
查看>>
归并排序求逆序对
查看>>
SQL2008用sql语句给字段添加说明
查看>>
JavaScript的对象创建
查看>>
树形DP(统计直径的条数 HDU3534)
查看>>
java-jdbc循环设置sql参数
查看>>
Vue 创建组件的方式
查看>>
java文件上传下载
查看>>