Submit | All submissions | Best solutions | Back to list |
A001856 - Chiaki Sequence |
Chiaki is interested in an infinite sequence , which defined as follows: where is the smallest positive integer not in the set .
Chiaki would like to know the sum of the first terms of the sequence, i.e. . As this number may be very large, Chiaki is only interested in its remainder modulo ().
Input
There are multiple test cases. The first line of input contains an integer (), indicating the number of test cases. For each test case:
The first line contains an integer () without leading zeros.
Output
For each test case, output an integer denoting the answer.
Example
Input
11 1 2 3 4 5 6 7 8 9 10 1000000000
Output
1 3 7 15 31 52 94 145 247 359 834069170
Information
There are input files and my unoptimized python3 code runs about 1.1 sec per file.
Added by: | zimpha |
Date: | 2018-01-14 |
Time limit: | 3s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
hide comments
2018-05-10 05:49:26 [Rampage] Blue.Mary
I don't know what do you mean by unoptimized. In my opinion this needs heavy optimization. |