码迷,mamicode.com
首页 > 其他好文 > 详细

A/B

时间:2017-04-21 23:50:59      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ace   stream   cout   amp   blog   span   namespace   str   clu   

#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;
    }
}

 

A/B

标签:ace   stream   cout   amp   blog   span   namespace   str   clu   

原文地址:http://www.cnblogs.com/NWUACM/p/6746522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!