#Lutece0313. A Card Game
A Card Game
Migrated from Lutece 313 A Card Game
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
There was a popular card game when I was young. The rules are descried below:
First, choose pieces of cards labeled A
,2
,3
,4
,5
,6
,7
,8
,9
,10
,J
,Q
,K
respectively and pile these cards, then you are asked to repeat the following operation for rounds. First take out one card on the top and put it on the bottom of this pile, then pick the card from the top of this new pile out and arrange it in a queue.Can you tell the original order of the pile of cards if the queue which you have arranged is A
,2
,3
,4
,5
,6
,7
,8
,9
,10
,J
,Q
,K
?
Assume that you are given pieces of cards labeled to and asked to repeat the operation for rounds. Every round you should firstly remove pieces of cards from the top to the buttom one by one, then pick the card from the top of this new pile out and arrange it in a queue. Can you tell the original order of the pile of cards if the queue which you have arranged is ?
Input
First a integer (), indicates there are test cases. Every test case has two integers , (, ).
Output
For the case, assume that the original sequence (from top to bottom) is . Then you should output Case #k:
followed by a single number on a single line, which indicates the number of pairs satisfy that and .
Samples
2
13 1
13 2
Case #1: 28
Case #2: 34
Note
in the first case the sequence is: 7 1 12 2 8 3 11 4 9 5 13 6 10
in the second case the sequence is: 11 5 1 8 10 2 6 12 3 9 7 4 13
Resources
standy