{"problem":{"name":"Sugar Water","description":{"content":"Snuke is making sugar water in a beaker. Initially, the beaker is empty. Snuke can perform the following four types of operations any number of times. He may choose not to perform some types of operat","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":3000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"arc083_a"},"statements":[{"statement_type":"Markdown","content":"Snuke is making sugar water in a beaker. Initially, the beaker is empty. Snuke can perform the following four types of operations any number of times. He may choose not to perform some types of operations.\n\n*   Operation 1: Pour $100A$ grams of water into the beaker.\n*   Operation 2: Pour $100B$ grams of water into the beaker.\n*   Operation 3: Put $C$ grams of sugar into the beaker.\n*   Operation 4: Put $D$ grams of sugar into the beaker.\n\nIn our experimental environment, $E$ grams of sugar can dissolve into $100$ grams of water.\nSnuke will make sugar water with the highest possible density.\nThe beaker can contain at most $F$ grams of substances (water and sugar combined), and there must not be any undissolved sugar in the beaker. Find the mass of the sugar water Snuke will make, and the mass of sugar dissolved in it. If there is more than one candidate, any of them will be accepted.\nWe remind you that the sugar water that contains $a$ grams of water and $b$ grams of sugar is $\\frac{100b}{a + b}$ percent. Also, in this problem, pure water that does not contain any sugar is regarded as $0$ percent density sugar water.\n\n## Constraints\n\n*   $1 \\leq A < B \\leq 30$\n*   $1 \\leq C < D \\leq 30$\n*   $1 \\leq E \\leq 100$\n*   $100A \\leq F \\leq 3$ $000$\n*   $A$, $B$, $C$, $D$, $E$ and $F$ are all integers.\n\n## Inputs\n\nInput is given from Standard Input in the following format:\n\n$A$ $B$ $C$ $D$ $E$ $F$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"arc083_a","tags":[],"sample_group":[["1 2 10 20 15 200","110 10\n\nIn this environment, $15$ grams of sugar can dissolve into $100$ grams of water, and the beaker can contain at most $200$ grams of substances.\nWe can make $110$ grams of sugar water by performing Operation 1 once and Operation 3 once. It is not possible to make sugar water with higher density. For example, the following sequences of operations are infeasible:\n\n*   If we perform Operation 1 once and Operation 4 once, there will be undissolved sugar in the beaker.\n*   If we perform Operation 2 once and Operation 3 three times, the mass of substances in the beaker will exceed $200$ grams."],["1 2 1 2 100 1000","200 100\n\nThere are other acceptable outputs, such as:\n\n400 200\n\nHowever, the output below is not acceptable:\n\n300 150\n\nThis is because, in order to make $300$ grams of sugar water containing $150$ grams of sugar, we need to pour exactly $150$ grams of water into the beaker, which is impossible."],["17 19 22 26 55 2802","2634 934"]],"created_at":"2026-03-03 11:01:13"}}