sgu184:Patties

来源:互联网 发布:网络纠纷案件怎么解决 编辑:程序博客网 时间:2024/06/06 00:06

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. LazarevResource:ACM International Collegiate Programming Contest 2003-2004 
North-Eastern European Region, Southern SubregionDate: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.
0 0
原创粉丝点击