Elephant

简介: Elephant

文章目录

一、Elephant

总结


一、Elephant

本题链接:Elephant


题目:

A. Elephant

time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.


本博客给出本题截图:

image.png

题意:每次可以走1,2,3,4,5步,问走到n最少需要几步

AC代码

#include <iostream>
using namespace std;
int main()
{
  int n, i = 0;
  cin >> n;
  for (i = 0; n > 0; i ++ )
    n -= 5;
  cout << i << endl;
  return 0;
}

总结

水题,不解释


目录
相关文章
|
C# C++
Cool说丨717与674
717. 1比特与2比特字符 674. 最长连续递增序列
74 0
|
自然语言处理 C# C++
Cool说丨970与720
970. 强整数 720. 词典中最长的单词
106 0
|
人工智能 BI C#
Cool说丨884与1207
[884. 两句话中的不常见单词](https://leetcode-cn.com/problems/uncommon-words-from-two-sentences/) [1207. 独一无二的出现次数](https://leetcode-cn.com/problems/unique-number-of-occurrences/)
95 0
|
C# C++
Cool说丨819
819. 最常见的单词
98 0
|
C# C++
Cool说丨力扣744、704
744. 寻找比目标字母大的最小字母 704. 二分查找
109 0
|
自然语言处理 C# C++
Cool说丨力扣648
648. 单词替换
63 0
|
存储 C# C++
Cool说丨力扣17
17. 电话号码的字母组合
60 0
|
C# C++ 索引
Cool说丨力扣387
387. 字符串中的第一个唯一字符
74 0
|
存储 C# C++
Cool说丨力扣215、380
[215. 数组中的第K个最大元素](https://leetcode-cn.com/problems/kth-largest-element-in-an-array/) [380. 常数时间插入、删除和获取随机元素](https://leetcode-cn.com/problems/insert-delete-getrandom-o1/)
99 0
|
人工智能 C# C++
Cool说丨力扣724与941
724. 寻找数组的中心索引 941. 有效的山脉数组
68 0