Cod sursa(job #2981685)

Utilizator mrvalentynPorumb Valentin mrvalentyn Data 18 februarie 2023 15:20:45
Problema Algoritmul lui Euclid extins Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.63 kb
#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;
}