Cod sursa(job #2929137)

Utilizator raresgherasaRares Gherasa raresgherasa Data 24 octombrie 2022 20:16:03
Problema Algoritmul lui Euclid extins Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.61 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;
    int d = euclid(b, a % b, x1, y1);
    x = y1;
    y = x1 - y1 * (a / b);
    return d;
  }
}

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