{"problem":{"name":"Squirrel Merchant","description":{"content":"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: 1.  Get out of the nest with $N$ acorns i","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"diverta2019_2_d"},"statements":[{"statement_type":"Markdown","content":"The squirrel Chokudai has $N$ acorns. One day, he decides to do some trades in multiple precious metal exchanges to make more acorns.\nHis plan is as follows:\n\n1.  Get out of the nest with $N$ acorns in his hands.\n2.  Go to Exchange $A$ and do some trades.\n3.  Go to Exchange $B$ and do some trades.\n4.  Go to Exchange $A$ and do some trades.\n5.  Go back to the nest.\n\nIn Exchange $X$ $(X = A, B)$, he can perform the following operations any integer number of times (possibly zero) in any order:\n\n*   Lose $g_{X}$ acorns and gain $1$ gram of gold.\n*   Gain $g_{X}$ acorns and lose $1$ gram of gold.\n*   Lose $s_{X}$ acorns and gain $1$ gram of silver.\n*   Gain $s_{X}$ acorns and lose $1$ gram of silver.\n*   Lose $b_{X}$ acorns and gain $1$ gram of bronze.\n*   Gain $b_{X}$ acorns and lose $1$ gram of bronze.\n\nNaturally, he cannot perform an operation that would leave him with a negative amount of acorns, gold, silver, or bronze.\nWhat 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.\n\n## Constraints\n\n*   $1 \\leq N \\leq 5000$\n*   $1 \\leq g_{X} \\leq 5000$\n*   $1 \\leq s_{X} \\leq 5000$\n*   $1 \\leq b_{X} \\leq 5000$\n*   All values in input are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$\n$g_A$ $s_A$ $b_A$\n$g_B$ $s_B$ $b_B$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"diverta2019_2_d","tags":[],"sample_group":[["23\n1 1 1\n2 1 1","46\n\nHe can bring $46$ acorns to the nest, as follows:\n\n*   In Exchange $A$, trade $23$ acorns for $23$ grams of gold. {acorns, gold, silver, bronze}={ $0,23,0,0$ }\n*   In Exchange $B$, trade $23$ grams of gold for $46$ acorns. {acorns, gold, silver, bronze}={ $46,0,0,0$ }\n*   In Exchange $A$, trade nothing. {acorns, gold, silver, bronze}={ $46,0,0,0$ }\n\nHe cannot have $47$ or more acorns, so the answer is $46$."]],"created_at":"2026-03-03 11:01:14"}}