Cod sursa(job #444687)

Utilizator toni2007Pripoae Teodor Anton toni2007 Data 21 aprilie 2010 11:45:38
Problema Invers modular Scor 100
Compilator cpp Status done
Runda Arhiva educationala Marime 0.51 kb
#include <stdio.h>

int gcd (int a, int b, long long &x, long long &y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }

    long long x0, y0;
    int d;
    d = gcd(b, a % b, x0, y0);
    x = y0;
    y = x0 - y0 * (a / b);
    return d;
}

int main () {
    int a, b;
    long long x, y;

    freopen("inversmodular.in", "r", stdin);
    freopen("inversmodular.out", "w", stdout);

    scanf("%d%d", &a, &b);

    gcd(a, b, x, y);

    if (x <= 0)
        x += b;

    printf("%lld\n", x);
}