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

Common Raccoon vs Monster

时间:2020-01-27 15:32:08      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:abc   type   cout   链接   --   ret   +=   pac   代码实现   

B - Common Raccoon vs Monster

  1. 链接

    B - Common Raccoon vs Monster

  2. 题意

    判定数组和与h的关系

  3. 代码实现

    #include<bits/stdc++.h> 
    using namespace std;
    typedef long long ll;
    const int maxn = 1e5+10;
    int a[maxn];
    int main(void){
     int h,n;
     cin >> h >> n;
     ll sum = 0;
     for(int i = 0; i < n; i++){
         cin >> a[i];
         sum += a[i];
     }
     if(sum>=h)
         cout<<"Yes"<<endl;
     else
         cout<<"No"<<endl;
     return 0;
    
    }
    

Common Raccoon vs Monster

标签:abc   type   cout   链接   --   ret   +=   pac   代码实现   

原文地址:https://www.cnblogs.com/AC-AC/p/12235905.html

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