zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    [洛谷2397]yyy loves Maths VI
    subs函数
    JSON 对象和字符串
    JSON添加注释的问题
    给定一个数组求里面数字拼在一起组成的最小数字
    为什么集合类没有实现Cloneable和Serializable接口
    Java 接口
    Unicode(统一码、万国码、单一码)
    meta 中的属性viewport
    meta标签
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/5560618.html
Copyright © 2011-2022 走看看