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

ZOJ 3778: Talented Chef

时间:2017-07-28 00:23:32      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:iostream   lin   ios   chef   ace   class   using   pac   space   

ZOJ - 3778

///@author Sycamore, ZJNU
///@accepted_on 2017 - 01 - 17
///
#include<iostream>
#include<algorithm>
#include<algorithm>
using namespace std;
int main()
{
    int T;
    cin >> T;
    while (T--)
    {
        int N, M, t;
        long long sum = 0;
        int m = 0;
        cin >> N >> M;
        while (N--)
        {
            cin >> t;
            m = max(t, m);
            sum += t;
        }
        int ans;
        if (sum%M) ans = sum / M + 1;
        else ans = sum / M;
        ans = max(ans, m);
        cout << ans << endl;
    }
    return 0;
}

 

ZOJ 3778: Talented Chef

标签:iostream   lin   ios   chef   ace   class   using   pac   space   

原文地址:http://www.cnblogs.com/zjnu/p/7247991.html

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