Pagini recente » Monitorul de evaluare | Cod sursa (job #112319) | Cod sursa (job #2261830) | Cod sursa (job #1429549) | Cod sursa (job #2441490)
#include <fstream>
using namespace std;
ifstream cin ("euclid3.in");
ofstream cout("euclid3.out");
int a, b, c, d, x, y;
int gcd(int a, int b, int &x, int &y) {
if (b == 0) {
x = 1;
y = 0;
return a;
}
else {
int x0, y0;
d = gcd(b, a % b, x0, y0);
x = y0;
y = x0 - (a / b) * y0;
return d;
}
}
int main() {
int n;
cin >> n;
while (n--) {
cin >> a >> b >> c;
d = gcd(a, b, x, y);
if (c % d) cout << "0 0\n";
else cout << x * (c / d) << " " << y * (c / d) << "\n";
}
return 0;
}