SGU184——Patties

派特计划在他的生日派对上为宾客提供自制的特色卷心菜馅饼。为了准备足够的馅饼,他需要计算出利用现有的面粉、牛奶和卷心菜可以制作的最大馅饼数量。本篇介绍了一个简单的程序来解决这个问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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;
}


小水怡情~

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值