File size: 919 Bytes
6bc5462 | 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | # p02608 AIsing Programming Contest 2020 - XYZ Triplets
## Problem Description
Let f(n) be the number of triples of integers (x,y,z) that satisfy both of the following conditions:
* 1 \leq x,y,z
* x^2 + y^2 + z^2 + xy + yz + zx = n
Given an integer N, find each of f(1),f(2),f(3),\ldots,f(N).
Constraints
* All values in input are integers.
* 1 \leq N \leq 10^4
Input
Input is given from Standard Input in the following format:
N
Output
Print N lines. The i-th line should contain the value f(i).
Example
Input
20
Output
0
0
0
0
0
1
0
0
0
0
3
0
0
0
0
0
3
3
0
0
## Contest Information
- **Contest ID**: 0
- **Problem Index**:
- **Points**: 0.0
- **Rating**: 0
- **Tags**:
- **Time Limit**: {'seconds': 2, 'nanos': 0} seconds
- **Memory Limit**: 1073741824 bytes
## Task
Solve this competitive programming problem. Provide a complete solution that handles all the given constraints and edge cases. |