失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > Sasha and Sticks

Sasha and Sticks

时间:2024-01-30 15:35:57

相关推荐

Sasha and Sticks

Description

It’s one more school day now. Sasha doesn’t like classes and is always bored at them. So, each day he invents some game and plays in it alone or with friends.

Today he invented one simple game to play with Lena, with whom he shares a desk. The rules are simple. Sasha draws n sticks in a row. After that the players take turns crossing out exactly k sticks from left or right in each turn. Sasha moves first, because he is the inventor of the game. If there are less than k sticks on the paper before some turn, the game ends. Sasha wins if he makes strictly more moves than Lena. Sasha wants to know the result of the game before playing, you are to help him.

Input

The first line contains two integers n and k (1 ≤ n, k ≤ 1018, k ≤ n) — the number of sticks drawn by Sasha and the number k — the number of sticks to be crossed out on each turn.

Output

If Sasha wins, print “YES” (without quotes), otherwise print “NO” (without quotes).

You can print each letter in arbitrary case (upper of lower).

Examples

Input

1 1

Output

YES

Input

10 4

Output

NO

Note

In the first example Sasha crosses out 1 stick, and then there are no sticks. So Lena can’t make a move, and Sasha wins.

In the second example Sasha crosses out 4 sticks, then Lena crosses out 4 sticks, and after that there are only 2 sticks left. Sasha can’t make a move. The players make equal number of moves, so Sasha doesn’t win.

C语言版本一

#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {long long n,m;scanf("%lld%lld",&n,&m);int flag=1;long long a=n/m;if(a%2!=0) flag=-1;n%=m;while(n>=0){flag=-flag;n-=m;}if(flag==1)printf("YES\n");else printf("NO\n");return 0;}

C++版本一

#include<cstdio>#include<algorithm>#include<cstring>#include<cstdlib>#include<iostream>using namespace std;int main(){long long int n,k;scanf("%I64d %I64d",&n,&k);if((n/k)%2!=0){printf("YES\n");}else{printf("NO\n");}return 0;}

C++版本二

#include <bits/stdc++.h>using namespace std;int main(int argc, char const *argv[]){long long n, k;while (~scanf("%I64d %I64d", &n, &k)){long long cnt;cnt = n / k;if(cnt & 1) printf("YES\n");else printf("NO\n");}return 0;}

JAVA版本一

如果觉得《Sasha and Sticks》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。