#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
typedef long long LL;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vector<int> two_sq(n * n + 1);
for (int a = 1; a < n; ++a)
{
for (int b = a; a * a + b * b <= n * n; ++b)
{
++two_sq[a * a + b * b];
}
}
LL res = 0ll;
for (int h = 1; h < n; ++h)
{
for (int d = h; d <= n; ++d)
{
res += two_sq[d * d - h * h];
}
}
cout << res;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; typedef long long LL; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int> two_sq(n * n + 1); for (int a = 1; a < n; ++a) { for (int b = a; a * a + b * b <= n * n; ++b) { ++two_sq[a * a + b * b]; } } LL res = 0ll; for (int h = 1; h < n; ++h) { for (int d = h; d <= n; ++d) { res += two_sq[d * d - h * h]; } } cout << res; } |
English