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;
}
小水怡情~