3 条题解
- 1
信息
- ID
- 674
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 2
- 标签
- 递交数
- 120
- 已通过
- 73
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main()
{
int c , v ,b;
cin >> c >> v >> b;
int n = c + v + b;
if (n % 2 == 1)
{
cout << "Bad";
}
else
{
if(c + v >= b)
{
cout << "Yes";
}
else
{
cout <<"No";
}
}
return 0;
}//A