0
已解决
杜智宸
中级光能
中级光能
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main(){
int a,b,c;
bool flag=1;
cin>>a>>b>>c;
for(int i=a/b;i>=1;i--){
for(int j=a/c;j>=1;j--){
if(b*i+c*j==a){
flag=1;
cout<<i<<" "<<j<<endl;
}
}
}
if(flag==0){
cout<<0;
}
return 0;
}
测试点6没过,90分求找错