CF151A.Soft Drinking

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

To make a toast, each friend needs nlnl milliliters of the drink, a slice of lime and npnp 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?

输入格式

The first and only line contains positive integers nn , kk , ll , cc , dd , pp , nlnl , npnp , not exceeding 10001000 and no less than 11 . The numbers are separated by exactly one space.

输出格式

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

输入输出样例

  • 输入#1

    3 4 5 10 8 100 3 1
    

    输出#1

    2
    
  • 输入#2

    5 100 10 1 19 90 4 3
    

    输出#2

    3
    
  • 输入#3

    10 1000 1000 25 23 1 50 1
    

    输出#3

    0
    

说明/提示

A comment to the first sample:

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

首页