Pagini recente » Cod sursa (job #2588491) | Cod sursa (job #1313641) | Cod sursa (job #2116839) | Cod sursa (job #2516377) | Cod sursa (job #2974509)
#include <bits/stdc++.h>
using namespace std;
ifstream fin ("euclid3.in");
ofstream fout ("euclid3.out");
void euclid(long long a, long long b, long long&d, long long&x, long long&y)
{
if(b == 0){
d = a;
x = 1;
y = 0;
}
else{
long long x0, y0;
euclid(b, a%b, d, x0, y0);
x = y0;
y = x0 - (a / b) * y0;
}
}
int N;
long long a, b, c, d, x, y;
int main()
{
fin >> N;
for(int i = 1; i <= N; i++){
fin >> a >> b >> c;
euclid(a, b, d, x, y);
long long ceva = c / d;
if(c % d == 0)
fout << x * ceva << " " << y * ceva << '\n';
else fout << "0 0" << '\n';
}
return 0;
}