Pagini recente » Statistici Luna Rowland (8avae8523xdgo7) | Statistici Leonard Anderson (rondo) | Atasamentele paginii romanian_masters | Istoria paginii utilizator/hongnho | Cod sursa (job #2074764)
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
void euclid(int a, int b, int &d, int &x, int &y) {
if (b == 0) {
d = a;
x = 1;
y = 0;
} else {
int x0, y0;
euclid(b, a%b, d, x0, y0);
x = y0;
y = x0 - (a/b) * y0;
}
}
int main()
{
int t, a, b, c, x, y;
fin >> t;
while (t) {
int d;
fin >> a >> b >> c;
euclid(a, b, d, x, y);
if (c % d) {
fout<<0<<' '<<0<<"\n";
} else {
fout<<x*(c/d)<<' '<<y*(c/d)<<"\n";
}
t--;
}
fin.close();
fout.close();
return 0;
}