码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1587 Flowers

时间:2016-06-05 15:22:33      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:

Flowers

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3679    Accepted Submission(s): 2412

Problem Description
As you know, Gardon trid hard for his love-letter, and now he‘s spending too much time on choosing flowers for Angel. When Gardon entered the flower shop, he was frightened and dazed by thousands kinds of flowers. "How can I choose!" Gardon shouted out. Finally, Gardon-- a no-EQ man decided to buy flowers as many as possible. Can you compute how many flowers Gardon can buy at most?
 
Input
Input have serveral test cases. Each case has two lines. The first line contains two integers: N and M. M means how much money Gardon have. N integers following, means the prices of differnt flowers.
 
Output
For each case, print how many flowers Gardon can buy at most. You may firmly assume the number of each kind of flower is enough.
 
Sample Input
2 5
2 3
 
Sample Output
2
 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5     int n, m, num;
 6     while(cin >> n >> m){
 7         int min = 1000;
 8         for(int i = 0; i < n; i++){
 9             cin >> num;
10             if(num < min)
11                 min = num;
12         }
13         cout << m / min << endl;    
14     }
15     return 0;
16 }

 

hdu 1587 Flowers

标签:

原文地址:http://www.cnblogs.com/qinduanyinghua/p/5560618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!