0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 03:45:24 +00:00
OI-codes/Luogu/P2666/P2666.cpp

22 lines
471 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int main() {
int n, ans = 0;
cin >> n;
for (int i = 0; i <= 100; i++) {
for (int j = 0; j <= 100; j++) {
for (int k = 0; k <= 100; k++) {
for (int p = 0; p <= 100; p++) {
if (i * i + j * j + k * k + p * p == n) {
ans++;
}
}
}
}
}
cout << ans << endl;
return 0;
}