eolymp
bolt
Try our new interface for solving problems
Problems

Zombie`s Treasure Chest

Zombie`s Treasure Chest

Some brave warriors come to a lost village. They are very lucky and find a lot of treasures and a big treasure chest, but with angry zombies.

The warriors are so brave that they decide to defeat the zombies and then bring all the treasures back. A brutal long-drawn-out battle lasts from morning to night and the warriors find the zombies are undead and invincible.

Of course, the treasures should not be left here. Unfortunately, the warriors cannot carry all the treasures by the treasure chest due to the limitation of the capacity of the chest. Indeed, there are only two types of treasures: emerald and sapphire. All of the emeralds are equal in size and value, and with infinite quantities. So are sapphires.

Being the priest of the warriors with the magic artifact: computer, and given the size of the chest, the value and size of each types of gem, you should compute the maximum value of treasures our warriors could bring back.

Input

There are multiple test cases. The number of test cases t (t200) is given in the first line. For each test case, there is only one line containing five integers n, s1, v1, s2, v2, denoting the size of the treasure chest is n and the size and value of an emerald is s1 and v1, size and value of a sapphire is s2, v2. All integers are positive and fit in 32-bit signed integers.

Output

For each test case, output a single line containing the case number and the maximum total value of all items that the warriors can carry with the chest.

Time limit 1 second
Memory limit 128 MiB
Input example #1
2
100 1 1 2 2
100 34 34 5 3
Output example #1
Case #1: 100
Case #2: 86
Source 2011 ACM Asia Shanghai Regional Contest, Fudan University, October 16, Problem A