Educational Codeforces Round 36 A Garden

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Educational Codeforces Round 36 A Garden相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


枚举用哪一个桶就好

【代码】

#include <bits/stdc++.h>
using namespace std;

int n,k,x;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n >> k;
    int ma = -1;
    for (int i = 1;i <= n;i++){
        cin >> x;
        if (x<=k && k%x==0){
            if (ma==-1)
                ma = k/x;
            else
                ma = min(ma,k/x);
        }
    }
    cout <<ma<<endl;
    return 0;
}

以上是关于Educational Codeforces Round 36 A Garden的主要内容,如果未能解决你的问题,请参考以下文章

Educational Codeforces Round 7 A

Educational Codeforces Round 7

Educational Codeforces Round 90

Educational Codeforces Round 33

Codeforces Educational Codeforces Round 54 题解

Educational Codeforces Round 27