GDUT_寒假训练题解报告_专题I_L题 个人题解报告

GDUT_寒假训练题解报告_专题I_L题 个人题解报告

题目:
You are given two integers a and b. You may perform any number of operations on them (possibly zero).

During each operation you should choose any positive integer x and set a:=a−x, b:=b−2x or a:=a−2x, b:=b−x. Note that you may choose different values of x in different operations.

Is it possible to make a and b equal to 0 simultaneously?

Your program should answer t independent test cases.

Input
The first line contains one integer t (1≤t≤100) — the number of test cases.

Then the test cases follow, each test case is represented by one line containing two integers a and b for this test case (0≤a,b≤109).

Output
For each test case print the answer to it — YES if it is possible to make a and b equal to 0 simultaneously, and NO otherwise.

You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES will all be recognized as positive answer).

Example
Input
3
6 9
1 1
1 2
Output
YES
NO
YES
题目挺水的,笔纸写一下就知道有一个关系式

2x+y=a
x+2y=b
3(x+y)=a+b

那么首先ab都要>=3;其次就是只要ab为3的倍数,那么x,y都能取出来,而且是任意的,所以现在只要判断一下就好了
代码:

using namespace std;
int t,a,b;
int main()
{
	scanf("%d",&t);
	for(int time=0;time<t;time++)
	{
		scanf("%d%d",&a,&b);
		if(a>b)
		{
			int temp=a;
			a=b;b=temp;
		}
		if(b>2*a)printf("NO\n");
		else if(b==2*a)printf("YES\n");
		else
		{
			if((a+b)%3==0)printf("YES\n");
			else printf("NO\n");
		}
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值