SGU184——Patties

Petya is well-known with his famous cabbage patties. Petya's birthday will come very soon, and he wants to invite as many guests as possible. But the boy wants everybody to try his specialty of the house. That's why he needs to know the number of the patties he can cook using the stocked ingredients. Petya has P grams of flour, M milliliters of milk and C grams of cabbage. He has plenty of other ingredients. Petya knows that he needs K grams of flour, R milliliters of milk and V grams of cabbage to cook one patty. Please, help Petya calculate the maximum number of patties he can cook.

Input
The input file contains integer numbers P, M, C, K, R and V, separated by spaces and/or line breaks (1 <= P, M, C, K, R, V <= 10000).

Output
Output the maximum number of patties Petya can cook.

Sample test(s)

Input

3000 1000 500 30 15 60
Output

8

 

 

題目說是 有a,b,c三個量、還有其對應的的,d,e,f三個量、每進行一場party,需消耗d e f個單位的值、問能舉行幾場party。

 

#include<iostream>
#include<string.h>
#include<stdio.h>
#include<ctype.h>
#include<algorithm>
#include<stack>
#include<queue>
#include<set>
#include<math.h>
#include<vector>
#include<map>
#include<deque>
#include<list>
using namespace std;
int main()
{
    int a,b,c;
    int d,e,f;
    int m,n,k;
    while(scanf("%d%d%d",&a,&b,&c)!=EOF)
    {
        scanf("%d%d%d",&d,&e,&f);
        m=(double)a/d;
        n=(double)b/e;
        k=(double)c/f;
        int w=min(m,n);
        int p=min(w,k);
        printf("%d\n",p);
    }
    return 0;
}


小水怡情~

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章