NWU_ACM

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
#include <iostream>
#include <string>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <algorithm>
using namespace std;
int extend_gcd(int a, int b, int &x, int &y) {
    if (b == 0) {
        x = 1, y = 0;
        return a;
    }
    int t = extend_gcd(b, a % b, y, x);
    y -= a / b * x;
    return t;
}
int main() {
    int T, n, b, x, y;
    cin >> T;
    while (T--) {
        cin >> n >> b;
        extend_gcd(9973, b, x, y);
        y *= n;
        y = (9973 + y % 9973) % 9973;
        cout << y << endl;
    }
}

 

posted on 2017-04-21 23:22  NWU_ACM  阅读(132)  评论(0编辑  收藏  举报