Pagini recente » Cod sursa (job #688118) | Cod sursa (job #3180221) | Cod sursa (job #1705497) | Cod sursa (job #2688273) | Cod sursa (job #1262422)
#include <fstream>
using namespace std;
int gcd(int a, int b, int &x, int &y) {
if(b == 0) {
x = 1;
y = 0;
return a;
}
int x0, y0;
int ret = gcd(b, a % b, x0, y0);
x = y0;
y = x0 - (a / b) * y0;
return ret;
}
int main() {
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
int t, a, b, c;
fin >> t;
while (t -- ) {
fin >> a >> b >> c;
int x, y;
int d = gcd(a, b, x, y);
if(c % d == 0) {
fout << x * c / d << ' ' << y * c / d << '\n';
}
else
fout << "0 0\n";
}
}