Rewards - #256 (Div. 2) A (448A)水题

来源:互联网 发布:sql 定义变量 编辑:程序博客网 时间:2024/05/16 10:42

A. Rewards
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Bizon the Champion is called the Champion for a reason.

Bizon the Champion has recently got a present — a new glass cupboard with n shelves and he decided to put all his presents there. All the presents can be divided into two types: medals and cups. Bizon the Champion has a1 first prize cups, a2 second prize cups and a3third prize cups. Besides, he has b1 first prize medals, b2 second prize medals and b3 third prize medals.

Naturally, the rewards in the cupboard must look good, that's why Bizon the Champion decided to follow the rules:

  • any shelf cannot contain both cups and medals at the same time;
  • no shelf can contain more than five cups;
  • no shelf can have more than ten medals.

Help Bizon the Champion find out if we can put all the rewards so that all the conditions are fulfilled.

Input

The first line contains integers a1a2 and a3 (0 ≤ a1, a2, a3 ≤ 100). The second line contains integers b1b2 and b3 (0 ≤ b1, b2, b3 ≤ 100). The third line contains integer n (1 ≤ n ≤ 100).

The numbers in the lines are separated by single spaces.

Output

Print "YES" (without the quotes) if all the rewards can be put on the shelves in the described manner. Otherwise, print "NO" (without the quotes).

Sample test(s)
input
1 1 11 1 14
output
YES
input
1 1 32 3 42
output
YES
input
1 0 01 0 01
output
NO

题意:上面三个是奖杯,下面三个是奖牌,一个橱子最多放5个奖杯或10个奖牌,问现有的橱子是否够用……………一开始理解成是否能把在把所有物品都放进橱子的情况下,使橱子填满……。

AC代码如下:

#include<cstdio>#include<cstring>using namespace std;int main(){ int n,m,i,j,k,num1=0,num2=0,mi=0;  for(i=1;i<=3;i++)  { scanf("%d",&k);    num1+=k;  }  for(i=1;i<=3;i++)  { scanf("%d",&k);    num2+=k;  }  mi=num1/5+num2/10;  num1%=5;  num2%=10;  if(num1)   mi++;  if(num2)   mi++;  scanf("%d",&n);  if(mi<=n)   printf("YES\n");  else   printf("NO\n");}


0 0
原创粉丝点击