首页 分享 Elephant 【条件】

Elephant 【条件】

来源:花匠小妙招 时间:2024-11-14 16:58

最新推荐文章于 2022-09-23 01:11:47 发布

weixin_44006014 于 2019-02-19 23:06:07 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

Elephant 

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.

Examples

Input

5

Output

1

Input

12

Output

3

Note

In the first sample the elephant needs to make one step of length 5 to reach the point x.

In the second sample the elephant can get to point x if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach x in less than three moves.

问题链接:https://vjudge.net/problem/CodeForces-617A

题意:一头大象决定去拜访他的朋友。

原来大象的家位于0点,他的朋友的家位于坐标线的X(X>0)点。

一步之内,大象就能向前移动1、2、3、4或5个位置。

确定,他到达朋友家所需要的最小步骤是多少。

输入的第一行包含一个整数X(1≤X≤1000000)——朋友家的坐标。
打印出大象从0点到X点所需的最小步数。
 

题解:朋友家坐标为X,大象只能移动1或2或3或4或5步

如果x<=5,大象移动一步即可;

 如果x>5并且x是5的倍数,移动步数为 x/5;

如果x>5且x不是5的倍数,移动步数为x/5+1;

AC代码:

#include<iostream>

using namespace std;

int main()

{

int x,n;

int steps=0;

cin >> x;

if (x <= 5)cout << "1";

else

if (x % 5 == 0)

{

n = x / 5;

cout << n;

}

else

{

n = x / 5 + 1;

cout << n;

}

}

相关知识

美国花叶芋世界苗圃 Caladium World
牧草种植条件——气候条件为主
品种引进
AI提示词:这座办公楼坐落在郁郁葱葱的森林花园深处,是高科技和可持续设计的和谐融合。它的外表覆盖着睡眠大理石,表面在阳光透过树冠的照射下闪闪发光。这座建筑体现了巴洛克风格的体验,融合了细节和大象曲线,可以沿着它的立面跳舞,办公室用水墨画装饰,每一笔都反映了周围自然的转移。最先进的技术与建筑的设计无缝融合,使其不仅在视觉上起步,而且功能强大,对环境负责。建筑是对新旧、自然和技术融合之美的考验,创建一个既鼓舞人心又有效的工作空间(本内容由AI生成,用以虚构图片)
生物气候条件
梅花鹿养殖条件
绿色供应链认证办理条件
花卉组织培养的条件是()。
霜霉病的发病条件是什么
植物组织培养的条件

网址: Elephant 【条件】 https://www.huajiangbk.com/newsview548617.html

所属分类:花卉
上一篇: 八仙花的花期管理,适当光照修剪处
下一篇: 种植管理|大樱桃树对温度、土壤、

推荐分享