//* #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") //*/ #include // #include using namespace std; // using namespace atcoder; #define DEBUG(x) cerr<<#x<<": "< #define vl vector #define vii vector< vector > #define vll vector< vector > #define vs vector #define pii pair #define pis pair #define psi pair #define pll pair template pair operator+(const pair &s, const pair &t) { return pair(s.first + t.first, s.second + t.second); } template pair operator-(const pair &s, const pair &t) { return pair(s.first - t.first, s.second - t.second); } template ostream& operator<<(ostream& os, pair p) { os << "(" << p.first << ", " << p.second << ")"; return os; } #define X first #define Y second #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep1(i,n) for(int i=1;i<=(int)(n);i++) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--) #define rrep1(i,n) for(int i=(int)(n);i>0;i--) #define REP(i,a,b) for(int i=a;i bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a = b; return 1; } return 0; } #define UNIQUE(v) v.erase(std::unique(v.begin(), v.end()), v.end()); const ll inf = 1000000001; const ll INF = (ll)1e18 + 1; const long double pi = 3.1415926535897932384626433832795028841971L; #define Sp(p) cout<> n >> m; vl ans(n + 1); unordered_map mp; int cnt = 0; rep (a, m + 1) { int now = a * a; if (now > n) break; int sum = a; REP (b, a, m + 1) { int now2 = now + b * b + sum * b; if (now2 > n) break; int sum2 = sum + b; REP (c, b, m + 1) { int now3 = now2 + c * c + sum2 * c; if (now3 > n) break; int sum3 = sum2 + c; REP (d, c, m + 1) { int now4 = now3 + d * d + sum3 * d; if (now4 > n) break; cnt++; // mp.clear(); // mp[a]++; // mp[b]++; // mp[c]++; // mp[d]++; // int now = 4; // ll add = 1; // for (auto itr = mp.begin(); itr != mp.end(); itr++) { // add *= C[now][itr->second]; // now -= itr->second; // } if (a == b) { if (b == c) { if (c == d) ans[now4]++; else ans[now4] += 4; } else { if (c == d) ans[now4] += 6; else ans[now4] += 12; } } else if (b == c) { if (c == d) { ans[now4] += 4; } else { ans[now4] += 12; } } else if (c == d) { ans[now4] += 12; } else { ans[now4] += 24; } } } } } rep (i, n + 1) { cout << ans[i] << '\n'; } }