Cod sursa(job #1955874)

Utilizator FrequeAlex Iordachescu Freque Data 6 aprilie 2017 12:18:34
Problema Algoritmul lui Euclid extins Scor 100
Compilator cpp Status done
Runda Arhiva educationala Marime 0.71 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream fin("euclid3.in");
ofstream fout("euclid3.out");

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

int main()
{
    int t, a, b, c, x, y, d;
    fin >> t;
    while (t--)
    {
        fin >> a >> b >> c;
        euclid2(a, b, &d, &x, &y);
        if (c % d == 0)
            fout << x * (c / d) << " " << y * (c / d) << '\n';
        else
            fout << "0 0" << '\n';
    }
    return 0;
}