Cod sursa(job #2902047)

Utilizator Frant_IoanaFrant Ioana Frant_Ioana Data 15 mai 2022 10:09:59
Problema Algoritmul lui Euclid extins Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.71 kb
#include <bits/stdc++.h>
using namespace std;

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

int euclid(int a, int b, int & x, int & y){
    if(b == 0){
        x = 1;
        y = 0;
        return a;
    }
    else{
        int x1, y1, d;
        d = euclid(b, a % b, x1, y1);

        x = y1;
        y = x1 - a / b * y1;
        return d;
    }
}

int main(){
    int t;
    fin >> t;
    
    for(int i = 1; i <= t; i++){
        int a, b, c;
        fin >> a >> b >> c;

        int d, x, y;
        d = euclid(a, b, x, y);

        if(c % d)
            fout << 0 << ' ' << 0 << '\n';
        else
            fout << x * (c / d) << ' ' << y * (c / d) << '\n';
    }
}