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;
}
上一篇:关于PowerShell错误处理的一些坑


下一篇:Codeforces Round #624 (Div. 3) (A~D,CD Good)