Pagini recente » Cod sursa (job #2307730) | Cod sursa (job #1294646) | Cod sursa (job #1998759) | Cod sursa (job #2051468) | Cod sursa (job #2981685)
#include <bits/stdc++.h>
using namespace std;
ifstream f("euclid3.in");
ofstream g("euclid3.out");
int gcd(int a, int b, int &x, int &y){
if(b == 0){
x = 1;
y = 0;
return a;
}
int d, x0, y0;
d = gcd(b, a % b, x0, y0);
x = y0;
y = x0 - (a / b) * y0;
return d;
}
int main(){
int t;
f >> t;
while(t--){
int a, b, c;
f >> a >> b >> c;
int d, x, y;
d = gcd(a, b, x, y);
if(c % d) g << "0 0" << endl;
else g << x * (c / d) << ' ' << y * (c / d) << endl;
}
f.close();
g.close();
return 0;
}