sunyinghang @ 2023-10-20 20:49:12
#include<bits/stdc++.h>
using namespace std;
int a[66],r,b,c,q,w,e;
bool u[66],f;
void dg(int dep)
{
if(dep>9)
{
q=a[1]*100+a[2]*10+a[3];
w=a[4]*100+a[5]*10+a[6];
e=a[7]*100+a[8]*10+a[9];
if(q/r*b==w&&w/b*c==e)
{
cout<<q<<' '<<w<<' '<<e<<'\n';
f=1;
}
}
else
{
for(int i=1;i<=9;i++)
{
if(!u[i])
{
a[dep]=i;
u[i]=1;
dg(dep+1);
u[i]=0;
}
}
}
}
int main()
{
cin>>r>>b>>c;
dg(1);
if(f==0)
{
cout<<"No!!!";
}
return 0;
}
by gaoy_vipcode @ 2023-10-22 19:57:10
re是因为它的输入是 0 1 2
by sunyinghang @ 2023-10-24 13:56:40
@gaoy_vipcode 我试过了,0 1 2不是RE啊。