`
to_zoe_yang
  • 浏览: 143346 次
  • 性别: Icon_minigender_2
  • 来自: 01
社区版块
存档分类
最新评论

Problem 29

 
阅读更多

问题描述:

Consider all integer combinations of ab for 2 ≤a ≤ 5 and 2 ≤b ≤ 5:

22=4, 23=8, 24=16, 25=32
32=9, 33=27, 34=81, 35=243
42=16, 43=64, 44=256, 45=1024
52=25, 53=125, 54=625, 55=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?

 

解决问题:

 

java里有set,每次计算出来,都将值放入其中,然后统计。

 

public static int count(){
		int total = 0;
		Set<Double> all = new HashSet<Double>();
		
		for(int i=DOWN; i<=UP; i++){
			for(int j=DOWN; j<=UP; j++){
				double value = Math.pow(i, j);
				all.add(value);
			}
		}
		
		return all.size();
	}

 

分享到:
评论

相关推荐

    爱立信CSR数据采集规范

    21.5 FMS related problem 29 21.6 Alarm Panel 29 21.7 IPN problem 29 21.8 Alarm routing problem 30 21.9 Charging related problem 30 21.10 FTP related problem 30 21.11 Command restrict problem 31 22. ...

    计算机网络第六版答案

    Computer Networking: A Top-Down Approach, 6th Edition Solutions to Review Questions and Problems Version Date: May 2012 ...This document contains the solutions to review questions ...Problem 1 There...

    Microeconomics, MICHAEL PARKIN,10th

    1 CHAPTER 2 The Economic Problem 29 CHAPTER 3 CHAPTER 4 CHAPTER 5 CHAPTER 6 CHAPTER 7 Demand and Supply 55 Elasticity 83 Efficiency and Equity 105 Government Actions in Markets 127 Global Markets in...

    2019-51MCM-Problem A (English).docx

    当运动员的释放速度为29.70 m/s,释放角度为36.6°,初始攻角为-0.9°时,需要估计标枪的飞行轨迹和可能达到的最大飞行距离。这涉及到投掷初始条件的输入,以及使用牛顿运动定律和空气动力学方程求解标枪的飞行时间...

    APIO2015 Problemset

    ### APIO2015 Problemset - Bali Sculptures #### 问题背景 在亚洲太平洋信息学奥林匹克(Asia-Pacific Informatics Olympiad,简称APIO)2015年的竞赛中,有一道名为“Bali Sculptures”的题目。这道题目的背景...

    Ulam’s problem without feedback—in advance.pdf

    ### Ulam's Problem:在没有反馈的情况下搜索与说谎者博弈 #### 一、问题背景与定义 Ulam的问题起源于斯坦尼斯拉夫·乌拉姆(Stanislaw Ulam)提出的一个智力游戏,该问题涉及到如何在面对可能的谎言回答时确定一...

    tsp test data.rar_tsp 数据集_tsp 测试集_tsp中bayg29_tsp数据集_tsp测试集

    城市旅行商问题(Travelling Salesman Problem, TSP)是一个经典的组合优化问题,它在图论和运筹学中占有重要地位。标题中的“tsp test data.rar”是一个包含TSP问题测试数据的压缩文件,其中可能包含了多个实例,供...

    delphi2010皮肤控件-VCLSkinv5.30FS

    Delphi VCLSkin 5.30 ... VCLSkin is a component to create skinnable user interface for Delphi/C++Builder application, It is easy to use, just put one component on mainform, ...* fix caption paint problem...

    Delphi VCLSkin v3.81 官方试用版

    radiobutton,checkbox.News in 3.35 2005.9.5*Support TGroupbox font color.News in 3.34 2005.8.31*Fix paint problem in Trackbar when skin file change.News in 3.33 2005.8.29*Fix problem in TcxDBCheckbox....

    ISO IEC TR 29181-9:2017 Information technology - Future Network - Problem statement and requirements - Part 9:Networking of everything - 完整英文版(29页).pdf

    【ISO IEC TR 29181-9:2017标准详解】——《信息技术——未来网络——问题陈述与需求——第9部分:万物互联》 《信息技术——未来网络——问题陈述与需求——第9部分:万物互联》(ISO IEC TR 29181-9:2017) 是一个...

    ACM学习资料汇总,ACMer要试试哦!

    - [题目29](http://acm.pku.edu.cn/JudgeOnline/problem?id=2989) 以上是针对ACM学习资料汇总中提到的动态规划与搜索算法的部分知识点解析。这些算法不仅在ACM比赛中非常重要,在实际软件开发和科学研究中也有着...

    Concurrent validity of the school problem screening inventory for behavior-disordered students

    Volume 29. April 1992 CONCURRENT VALIDITY OF THE SCHOOL PROBLEM SCREENING INVENTORY FOR BEHAVIOR-DISORDERED STUDENTS WILLIAM S. NODRICK Wood’s Homes, Calgary, Alberta ANITA K.F. LI ...

    Delphi2010皮肤控件AlphaControls6.21FS

    29.08.2008 AlphaControls v5.63 beta released * A lot of small improvements and bug-fixes 13.08.2008 AlphaControls v5.62 beta released * Improved design-time editor for the SkinManager.ThirdParty ...

    李名杨-VisualInertialSLAMandCalibrationprobleminSLAM

    李名扬在2018年7月28日至29日于浙江大学举行的CSIG第一届全国SLAM技术论坛上分享了关于视觉惯性SLAM以及传感器校准的重要议题。其演讲主要聚焦于如何通过多种传感器的数据来实现高精度且鲁棒的定位与地图构建,并...

    problem-solving

    "problem-solving"这个标题暗示了我们将关注如何运用编程思维来解决实际问题,而这里的焦点是Python语言。"适用于初学者的Python:通过解决29个问题来提高技能"描述则明确指出这是一门针对初学者的课程,旨在通过...

    piarc_01 scope_of_the_road_safety_problem_2019_09_25_v2.pdf

    3. 对儿童而言,道路交通伤害是全球主要的死亡原因,2010年,它是15-29岁年轻人的首要死因。如果不采取紧急措施,预计到2030年,道路交通伤害将成为所有原因死亡中的第七大因素。 二、社会经济成本 从社会经济角度...

    P29_自定义错误信息和错误报告_Routine.Api2020_2_13.rar

    使用 ASP.NET Core 3.x 构建 RESTful Web API(2020-2-7更新) P29_自定义错误信息和错误报告_Routine.Api2020_2_13.rar P29 自定义错误信息和错误报告 ...Problem details for HttP APIs RFC(7807)

    冀教九下英语分课同步练习Lesson29.doc

    - It’s no problem with me → It’s no problem for me:介词for表示对某人来说。 以上就是冀教九下英语同步练习Lesson29中的主要知识点,包括词汇的使用、句型结构和语法修正,这些都是学习英语的重要组成部分...

    粉色系 (29)动态.pptx

    此外,还设有多个内容输入框,如“Just for today I will try to live through this day only and not tackle my whole life problem at once.”,这些预设的引言可以作为灵感来源,或者直接替换为用户自己的观点和...

    The Little Book of Semaphores

    29 3.5.5 Deadlock #3 . . . . . . . . . . . . . . . . . . . . . . . . . 31 3.6 Reusable barrier . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 3.6.1 Reusable barrier non-solution #1 . . . . ...

Global site tag (gtag.js) - Google Analytics