#Lutece0134. Hotel
Hotel
Migrated from Lutece 134 Hotel
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
A new hotel has been built in a city where the citizens believe that the number brings bad luck. The hotel has rooms which are numbered from to inclusive. One of the main properties of a room is its unlucky value which depends on the room number. Only number whose decimal forms contain the substring 13
will be considered to be unlucky numbers. For example, , , , are unlucky numbers, but , , , , are not. The unlucky value of a room is the square of the room number if the room number is unlucky, and zero otherwise.
A hotel's unlucky value equals the sum of the unlucky value of all its rooms. Help the manager to calculate the unlucky value of this hotel.
Input
The first line contains an integer () indicating the number of test cases. lines follows, each line contains an integer () indicating that this hotel has (the power of ) rooms.
Output
For each test case, print the case number and the answer mod in a single line where the answer is the unlucky value of this hotel. Follow the format of the sample output please.
Samples
3
1
2
3
Case 1: 0
Case 2: 169
Case 3: 49582
Resources
The 5th Guangting Cup Central China Invitatio