【HDU 1087】【水题】Flowers

#include "stdio.h"
int main(int argc, char const *argv[])
{
    int min;
    int n,m;
    int temp;
    while(~scanf("%d %d",&n,&m))
    {
        scanf("%d",&min);
        for (int i = 1; i < n; ++i)
        {
            scanf("%d",&temp);
            if(temp<min)
                min=temp;
        }
        printf("%d\n",m/min);
    }
    return 0;
}
以为会是难题。。结果直接选最小的就莫名其妙的A了,题目估计是想考我们背包吧。

你可能感兴趣的:(c,水题)