Cod sursa(job #1914726)

Utilizator medicinedoctoralexandru medicinedoctor Data 8 martie 2017 18:19:27
Problema Algoritmul lui Euclid extins Scor 0
Compilator cpp Status done
Runda Arhiva educationala Marime 0.62 kb
#include <fstream>

using namespace std;

ifstream cin ("euclid3.in" );
ofstream cout("euclid3.out");

int gcd(int a, int b, int &x, int &y)
{
    if (b == 0)
    {
        x = 1;
        y = 0;
        return a;
    }
    int x0, y0, d;
    d = gcd(b, a % b, y0, x0);
    x = y0;
    y = x0 - (a / b) * y0;
    return d;
}

int main()
{
    int i, t, x, y, a, b, c, d;
    cin >> t;

    for (i = 0; i < t; i++)
    {
        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;
}