记录编号 |
41259 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[河南省队2012] 取火柴 |
最终得分 |
100 |
用户昵称 |
苏轼 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.123 s |
提交时间 |
2012-07-21 16:17:59 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int number;
bool check(int x,int y);
int main()
{
freopen ("bet.in","r",stdin);
freopen ("bet.out","w",stdout);
cin>>number;
for (int i=0;i<number;i++)
{
int a,b;
cin>>a>>b;
bool e=0,f=0;
e=check(a,b);
if (e)
cout<<"No"<<endl;
else
cout<<"Yes"<<endl;
}
return 0;
}
bool check(int x,int y)
{
unsigned long long c=1;
while (c<=x&&c<=y)
{
if ((x/c)%2==1&&(y/c)%2==1&&x%c==0&&y%c==0)
{
return true;
}
else
{
c*=2;
}
}
return false;
}