日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

康复题12

發(fā)布時間:2023/12/3 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 康复题12 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

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.

問題分析:一開始以為跟老農(nóng)找奶牛一樣要用BFS進行探索,多看了幾次才發(fā)現(xiàn)有明顯不同,只要從大的步數(shù)開始掃就可以

AC代碼:

#include<iostream> using namespace std; int main() {int x;while (cin >> x){if (x % 5 == 0){cout << x / 5 << endl;}else{cout << x / 5 + 1 << endl;}} }

?

總結

以上是生活随笔為你收集整理的康复题12的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。