#Lutece0367. Help
Help
Migrated from Lutece 367 Help
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
Standy is a clever boy, and loves solving puzzles very much. Recently, he was troubled by a difficult problem.
What’s the numbers in the line? You may find that it is just Yanghui Triangle, so the line should be 1 4 6 4 1
. But Standy didn’t know Yanghui Triangle, and he found that two adjacent cells in a row and the cell above them and the cell below them form a diamond. What’s more, the upper and lower cells’ product is one larger than the left and right cells’ product. The picture below shows that . So the first and last number in each row is , and others can be determined by the Diamond Rule
.
Standy wants to know the number in the row, and asks you for help.
Input
The first line of input contains an integer (), which is the number of test cases that follow.
Then lines follow, each of them containing two integers and ()
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . Then output the number in the row.
Samples
3
4 2
5 3
6 4
Case #1: 3
Case #2: 5
Case #3: 7
Note
As the answer may be very large, you should use long long
instead of int
. If you want to know more details, please refer to FAQ of CDOJ.
Resources
The 9th UESTC Programming Contest Preliminary