您的位置:首页 > 大数据 > 人工智能

Dreamoon and Stairs

2016-01-02 20:26 471 查看
Description

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.

Sample Input

Input
10 2


Output
6


Input
3 5


Output
-1


Hint

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.

#include<cstdio>
#include<iostream>
using namespace std;

int main(){
int n,m;
while(cin>>n>>m){
int cn1=n/2;
int cn2=n%2;
while((cn1+cn2)%m!=0&&cn1!=0){
cn1--;
cn2+=2;
}
if((cn1+cn2)%m!=0)
cout<<"-1"<<endl;
else
cout<<cn1+cn2<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: