Common Raccoon vs Monster
Posted ac-ac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Common Raccoon vs Monster相关的知识,希望对你有一定的参考价值。
B - Common Raccoon vs Monster
链接
题意
判定数组和与h的关系
代码实现
#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的主要内容,如果未能解决你的问题,请参考以下文章