博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
projecteuler---->problem=9----Special Pythagorean triplet
阅读量:5360 次
发布时间:2019-06-15

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

title:

A Pythagorean triplet is a set of three natural numbers, a <b <c, for which,

a
2 +
b
2 =
c
2

For example, 32 + 42 = 9 + 16 = 25 = 52.

There exists exactly one Pythagorean triplet for which a + b + c = 1000.

Find the product abc.

翻译:

勾股数组就是三个自然数a, b, c

a
2 +
b
2 =
c
2
(a < b < c)

比如,32 + 42 = 9 + 16 = 25 = 52

现存在唯一的勾股数组a, b, c,且a + b + c = 1000。请求出这三个数的乘积。

def resu():	for i in range(1,1000):		for j in range(1,1000):			k=1000-i-j			if i*i+j*j==k*k:				print i*j*k				returnresu()

转载于:https://www.cnblogs.com/mengfanrong/p/5173371.html

你可能感兴趣的文章
AMH V4.5 – 基于AMH4.2的第三方开发版
查看>>
Web.Config文件配置之配置Session变量的生命周期
查看>>
mysql导入source注意点
查看>>
linux下编译安装nginx
查看>>
ArcScene 高程不同的表面无法叠加
查看>>
[ONTAK2010] Peaks
查看>>
DLL 导出函数
查看>>
windows超过最大连接数解决命令
查看>>
12个大调都是什么
查看>>
angular、jquery、vue 的区别与联系
查看>>
a标签添加点击事件
查看>>
Context.startActivity出现AndroidRuntimeException
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I &amp; II 读书笔记
查看>>