Pagini recente » Cod sursa (job #2404698) | Cod sursa (job #2775149) | Cod sursa (job #1476490) | Cod sursa (job #1353273) | Cod sursa (job #168120)
Cod sursa(job #168120)
#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;
}