4104.Soft Drinking

Time Limit: 1s Memory Limit: 256MB

This winter is so cold in Nvodsk! A group of n friends decided to buy k bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has l milliliters of the drink. Also they bought c limes and cut each of them into d slices. After that they found p grams of salt.

To make a toast, each friend needs nl milliliters of the drink, a slice of lime and np grams of salt. The friends want to make as many toasts as they can, provided they all drink the same amount. How many toasts can each friend make?

Input Format(From the terminal/stdin)

The first and only line contains positive integers n, k, l, c, d, p, nl, np, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.

Output Format(To the terminal/stdout)

Print a single integer - the number of toasts each friend can make.

Sample Input 1

Copy
3 4 5 10 8 100 3 1
 · · ·  · ·   · · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
5 100 10 1 19 90 4 3
 ·   ·  · ·  ·  · · \n

Sample Output 2

Copy
3
 \n

Sample Input 3

Copy
10 1000 1000 25 23 1 50 1
  ·    ·    ·  ·  · ·  · \n

Sample Output 3

Copy
0
 \n

Hints

A comment to the first sample:

Overall the friends have 45=20 milliliters of the drink, it is enough to make 20/3=6 toasts. The limes are enough for 108=80 toasts and the salt is enough for 100/1=100 toasts. However, there are 3 friends in the group, so the answer is min(6,80,100)/3=2.

Submit

请先 登录

© 2025 FAQs