前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Dreamoon and Stairs

Dreamoon and Stairs

作者头像
Cell
发布2022-02-25 15:24:19
1460
发布2022-02-25 15:24:19
举报
文章被收录于专栏:Cell的前端专栏

题目链接

Dreamoon wants to climb up a stair of n steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer m.

What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?

Input

The single line contains two space separated integers n, m (0 < n ≤ 10000, 1 < m ≤ 10).

Output

Print a single integer — the minimal number of moves being a multiple of m. If there is no way he can climb satisfying condition print  - 1 instead.

Examples

input
代码语言:javascript
复制
10 2
output
代码语言:javascript
复制
6
input
代码语言:javascript
复制
3 5
output
代码语言:javascript
复制
-1

Note

For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}. For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.

有一个 n 级台阶,每次可以走一级或两级,问最少的步数是多少,且步数必须是 m 的倍数。 找一下数学公式就好了。 具体看代码。

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

#include<bits/stdc++.h> using namespace std; int main(){ int x,n,m; cin>>n>>m; if(n<m){ cout<<-1<<endl; return 0; } if(n==m){ cout<<n<<endl; return 0; } if(n%2==0){ x=n/2%m; if(x==0) cout<<n/2<<endl; else cout<<n/2+m-x<<endl; }else if(n%2!=0){ x=(n/2+1)%m; if(x==0) cout<<n/2+1<<endl; else cout<<(n/2+1)+m-x<<endl; } return 0; }

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-08-10,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Input
  • Output
  • Examples
    • input
      • output
        • input
          • output
          • Note
          领券
          问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档