Pagini recente » Cod sursa (job #1634635) | Cod sursa (job #46221) | Cod sursa (job #2774793) | Cod sursa (job #3198682) | Cod sursa (job #168125)
Cod sursa(job #168125)
#include <iostream.h>
#include <stdio.h>
#include <fstream.h>
inline int get(int a,int b,int &x,int &y){
if (b == 0){
x = 1;
y = 0;
return a;
}
int x0,y0,k, sol;
sol = get(b,a%b,x0,y0);
k = a/b;
x = y0;
y = x0 - k*y0;
return sol;
}
int main(void){
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
int t,x,y,r,a,b;
for (fin >> t;t;t--){
fin >> a >> b >> r;
int cmmdc = get(a,b,x,y);
if (r % cmmdc == 0) fout << x*(r/cmmdc) << " " << y*(r/cmmdc) << "\n";
else fout << "0 0\n";
}
fin.close();
fout.close();
return 0;
}