Score : 600 points
The squirrel Chokudai has N acorns. One day, he decides to do some trades in multiple precious metal exchanges to make more acorns.
His plan is as follows:
In Exchange X (X = A, B), he can perform the following operations any integer number of times (possibly zero) in any order:
Naturally, he cannot perform an operation that would leave him with a negative amount of acorns, gold, silver, or bronze.
What is the maximum number of acorns that he can bring to the nest? Note that gold, silver, or bronze brought to the nest would be worthless because he is just a squirrel.
Input is given from Standard Input in the following format:
N g_A s_A b_A g_B s_B b_B
Print the maximum number of acorns that Chokudai can bring to the nest.
23 1 1 1 2 1 1
46
He can bring 46 acorns to the nest, as follows:
He cannot have 47 or more acorns, so the answer is 46.