• hdu 1587 Flowers


    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 }
  • 相关阅读:
    加密文件夹 | 彻底隐藏文件夹
    Swing的概述
    Java SE练习题——求奇数
    多线程有什么用?
    Robot的使用
    基础的Servlet
    Angular Resolver 学习
    GoLang 学习
    Angular Material 控件学习
    Angular 学习小记
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/5560618.html
Copyright © 2020-2023  润新知