比赛 |
20160303 |
评测结果 |
AAAAAAAAAA |
题目名称 |
同余方程 |
最终得分 |
100 |
用户昵称 |
NVIDIA |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-03-03 19:12:49 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <string>
#include <iomanip>
#include <cmath>
#include <cstdlib>
#include <algorithm>
using namespace std;
void gcd(long long a,long long b,long long& x,long long& y)
{if(!b)
{x=1;y=0;return;}
else
{
gcd(b,a%b,x,y);
int m=x;
x=y;
y=m-((int)a/(int)b)*y;
}
}
int main()
{
long long a,b;
long long x,y;
freopen("mod.in","r",stdin);
freopen("mod.out","w",stdout);
cin>>a>>b;
gcd(a,b,x,y);
while(x<=0)x+=b;
cout<<x<<endl;
return 0;
}