A

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 a3 third 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 a1, a2 and a3 (0 ≤ a1, a2, a3 ≤ 100). The second line contains integers b1, b2 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).

Examples
Input
1 1 1
1 1 1
4
Output
YES
Input
1 1 3
2 3 4
2
Output
YES
Input
1 0 0
1 0 0
1
Output
NO

题意:给一个n,分别给2组3个数,给3个规则,看给定的数是否满足给定的规则

#include <cstdio>
#include <iostream>

using namespace std;

int main()
{
    int a,b,c,d,e,f;
    int n;
    cin>>a>>b>>c>>d>>e>>f>>n;
    int s1 = a + b + c;
    int s2 = d + e + f;
    int m1 = 0,m2 = 0;
    while(s1 > 0)
    {
        s1 -= 5;
        m1++;
    }
    while(s2 > 0)
    {
        s2 -= 10;
        m2++;
    }
    if(m1 + m2 > n)
    {
        printf("NO
");
    }
    else
        printf("YES
");
    return 0;
}

原文地址:https://www.cnblogs.com/tomjobs/p/10612580.html