博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #256 (Div. 2) A Rewards
阅读量:5057 次
发布时间:2019-06-12

本文共 1815 字,大约阅读时间需要 6 分钟。

A. Rewards

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 anda3 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 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 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

 

#include 
#include
using namespace std;int main(){ int a1,a2,a3,b1,b2,b3,n; while(scanf("%d%d%d%d%d%d",&a1,&a2,&a3,&b1,&b2,&b3)!=-1) { cin>>n; int a,b,sum; sum=0; a=a1+a2+a3; b=b1+b2+b3; if(a%5==0) sum+=a/5; else sum+=a/5+1; if(b%10==0) sum+=b/10; else sum+=b/10+1; if(sum<=n) cout<<"YES"<

 

转载于:https://www.cnblogs.com/nefu929831238/p/5915707.html

你可能感兴趣的文章
文件上传
查看>>
kettle转换提高性能拆分转换步骤_20161201
查看>>
Web程序和应用程序服务器[转]
查看>>
数组求和
查看>>
enyo官方开发入门教程翻译一Key Concepts之Object Lifecycle
查看>>
四种JavaEE架构简介
查看>>
不用vue-cli搭建vue-webpack-express-mongoDB项目
查看>>
csu 1598(KMP)
查看>>
4. Scala程序流程控制
查看>>
JSP中 setautosubmit的使用
查看>>
win7系统中 python2、python3安装后再安装插件时遇到的问题
查看>>
SpringMVC+JXL 上传Excel2003文件并导入数据库
查看>>
约瑟夫环问题较简单的解决办法
查看>>
shell无名管道线的实现(父子进程实现对管道的一端读另一端写)
查看>>
FTP操作类( 拷贝、移动、删除文件/创建目)
查看>>
python Quicksort demo
查看>>
个人-GIT使用方法
查看>>
通过 Ansible 安装 Docker
查看>>
sql语句
查看>>
koa2的文件上传
查看>>