其他分享
首页 > 其他分享> > A. Nastia and Nearly Good Numbers【1000 / 思维 构造】

A. Nastia and Nearly Good Numbers【1000 / 思维 构造】

作者:互联网

在这里插入图片描述
https://codeforces.com/problemset/problem/1521/A
几乎好的数是x%a==0 && x%(a*b)!=0
好的数是x%(a*b)==0

所以如果b==1 那么结果一定不存在
A(a+b)=ABc
a+b=B*c
让c等于1,剩下的数随便分B
当B=2时乘以2 一个分1 一个分3即可。

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		LL a,b; cin>>a>>b;
		if(b==1) puts("NO");
		else 
		{
			puts("YES");
			if(b==2)  cout<<a<<" "<<a*3<<" "<<a*b*2<<endl;
			else cout<<a<<" "<<a*(b-1)<<" "<<a*b<<endl;
		}	
	}
	return 0;
}

标签:Good,puts,int,Nastia,cin,long,x%,Numbers,LL
来源: https://blog.csdn.net/bettle_king/article/details/120377977