#Lutece0322. Count Triangles
Count Triangles
Migrated from Lutece 322 Count Triangles
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
In a class, kennethsnow is very sleepy. To avoid falling asllep, he starts to doodle and finally gets this:
Now kennethsnow is very curious about how many triangles in the picture above. If he can't calculate excatly, he will fall asleep. Your task is write a program to help him solve this problem.
Input
The first line of the input contains one integer ().
Following lines, every line only contains one integers (), indicates the length of the greatest triangle in the kennethsnow's picture.(In the picture of the description, the is equal to )
Output
For each test case, output one line. First, output Case #C:
, where is the number of test case, from to . Then, output the number of triangles in the picture for each test case. Since the answer may be very large, you just have to output the answer mod .
Samples
5
1
2
3
4
5
Case #1: 1
Case #2: 5
Case #3: 13
Case #4: 27
Case #5: 48
Note
You may use these equations:
- If is divided by , $\frac{A}{B}\rm\ mod\ K = \frac{A\rm\ mod\ (B\times K)}{B}$;
- $(A\times B)\rm\ mod\ K = ((A\rm\ mod\ K)\times (B\rm\ mod\ K))\rm\ mod\ K$
Resources
kennethsnow