|
||||||||||
Let the Flames BeginTime Limit: 10000/6000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 242 Accepted Submission(s): 51 Problem Description Tonight $n$ young men are going to participate in Peter's campfire party. They decide to play an ancient counting-out game which was first described by Titus Flavius Josephus. Here is a brief introduction to the game. Before starting the game, these young men will stand in a circle around the campfire and the first man to join the circle will start the game. Counting will begin at the first man and proceed around the circle in the counterclockwise direction repeatedly. That is, the first man will report one at the beginning, and the second one in the counterclockwise direction will report two, and so forth, until a poor man reports $k$ and consequently leaves the circle to become a bystander. The game will be repeated with the remaining men, restarting from the next man in the counterclockwise direction who will be the new first man, going in the same direction, until all the young men have left the circle. Peter wanna be the $m$-th one who left the circle since he strongly believes this number is lucky for him. As a sophisticated programmer, can you point out the right place he should stand at before the game start so that he can achieve his goal? For the sake of clarity, we assume the index of the first man to join the circle is $1$, the index of the next man in his counterclockwise direction is $2$, and so on. By the definition, the index of the last man in that direction should be $n$, and your task is to determine the index of the place Peter wants. Input The input contains several test cases, and the first line contains a positive integer $T$ indicating the number of test cases which is up to $1000$. For each test case, the only line contains three integers $n, m$ and $k$ where $1 \le n, m, k \le 10^{18}$ and $n \ge m$. We guarantee that the sum of $\min\{m, k\}$ (i.~e. the minimum of $m$ and $k$) in all test cases is no larger than $2 \times 10^6$. Output For each test case, output a line containing "Case #x: y"(without quotes), where x is the test case number starting from $1$, and y is the index of the right place. Sample Input
Sample Output
Hint The sample cases indeed show the order of the young men to leave the circle when (n, k) is set to (10, 2) and (10, 3) respectively. Source | ||||||||||
|