CF w4d3 A. Pythagorean Theorem II

In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states:

In any right-angled triangle, the area of the square whose side is the hypotenuse (the side opposite the right angle) is equal to the sum of the areas of the squares whose sides are the two legs (the two sides that meet at a right angle).

The theorem can be written as an equation relating the lengths of the sides a, b and c, often called the Pythagorean equation:

a 2 + b 2 = c 2
where c represents the length of the hypotenuse, and a and b represent the lengths of the other two sides.

CF w4d3 A. Pythagorean Theorem II

Given n, your task is to count how many right-angled triangles with side-lengths a, b and c that satisfied an inequality 1 ≤ a ≤ b ≤ c ≤ n.

Input

The only line contains one integer n (1 ≤ n ≤ 104) as we mentioned above.

Output

Print a single integer — the answer to the problem.

Examples

inputCopy
5
outputCopy
1
inputCopy
74
outputCopy
35

暴力,但最后一个数要用其他两个减来得到,不然会T。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,ans=0,t;
    cin>>n;
    for(int c=1;c<=n;c++){
        for(int b=1;b<c;b++){
            t=c*c-b*b;
            double a=sqrt(t);
            if(a==(int)a&&a<=b)ans++;
        }
    }
    cout<<ans<<endl;
    return 0;
}

原文链接: https://www.cnblogs.com/LiangYC1021/p/12990368.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    CF w4d3 A. Pythagorean Theorem II

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/351836

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月2日 上午7:06
下一篇 2023年3月2日 上午7:09

相关推荐