首页 > 其他 > 详细

hdu 1576 A/B

时间:2015-06-01 22:32:25      阅读:131      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
const int M=9973;
typedef long long ll;

void gcd(ll a, ll b, ll& d,ll& x, ll& y)
{
    if(b==0)
    {
        d=a;
        x=1;
        y=0;
    }
    else
    {
        gcd(b,a%b,d,y,x);
        y-=(a/b)*x;
    }
}
int main()
{
    int t;
    ll n,b,x,y,d,ans;
    scanf("%d",&t);
    while(t--)
    {
        cin>>n>>b;
        gcd(b,-M,d,x,y);
        x*=n/d;
        while(x<0) x+=M;
        cout<<x<<endl;
    }
    return 0;
}

hdu 1576 A/B

原文:http://blog.csdn.net/xinag578/article/details/46317279

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!