您的位置:首页 > 其它

sgu184:Patties

2014-11-22 14:07 302 查看

184. Patties

time limit per test: 0.25 sec.

memory limit per test: 4096 KB

input: standard input

output: standard output

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

[submit]
[forum]
Author:Andrew V. Lazarev
Resource:ACM International Collegiate Programming Contest 2003-2004

North-Eastern European Region, Southern Subregion
Date:2003 October, 9
偶尔刷刷水题有益身心健康~~
#include <cstdio>
#include <algorithm>
using namespace std;
int main()
{
  int a, b, c, d, e, f, ans;
  scanf("%d%d%d", &a, &b, &c);
  scanf("%d%d%d", &d, &e, &f);
  ans = a/d;
  ans = min(ans, b/e);
  ans = min(ans, c/f);
  printf("%d", ans);
  return 0;	
}


Server time: 2014-11-22 09:07:00Online Contester Team © 2002 - 2014. All rights reserved.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: