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

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

A. Elephant

题目连接:

Descriptionww.co

An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point x(x > 0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make in order to get to his friend's house.

Input

The first line of the input contains an integer x (1 ≤ x ≤ 1 000 000) — The coordinate of the friend's house.

Output

Print the minimum number of steps that elephant needs to make to get from point 0 to point x.

Sample Input

6

Sample Output

2

Hint

题意

给你一个数x,然后让你输出x/5的向上取整

题解:

输出(x+4)/5就好了

代码

#include
using namespace std;int main(){ long long x; cin>>x; cout<<(x+4)/5<

转载地址:http://qbhao.baihongyu.com/

你可能感兴趣的文章
MySQL:日期函数、时间函数总结
查看>>
【技术贴】三星Note8 N5100实用教程,关闭相机快门声,增加浏览器退出按钮。...
查看>>
C# 调试程序时如何输入命令行参数
查看>>
如何成为强大的程序员?
查看>>
C#获取全部目录和文件
查看>>
跨站请求伪造CSRF
查看>>
关于同一用户不能同时登录问题的探讨(2/2)
查看>>
IE bug之location.href没有referer
查看>>
VB将MSHFlexGrid数据导出到Excel文件通用功能
查看>>
Opengl绘制我们的小屋(三)纹理绘制
查看>>
前端开发者进阶之函数反柯里化unCurrying
查看>>
session 防止表单重复提交
查看>>
Windows Phone开发(1):概论
查看>>
NSNotification的使用(对观察者模式最通俗、易懂的讲解)
查看>>
asp.net操作word的表格
查看>>
Cross Site Request Forgery (CSRF)--spring security -转
查看>>
标准C++类std::string的内存共享和Copy-On-Write...
查看>>
c++内存中字节对齐问题详解
查看>>
计算机:2014计算机考研新大纲全面解析之备考指导概述
查看>>
mysql UNIX时间戳与日期的相互转换
查看>>