记录编号 |
171252 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2012]同余方程 |
最终得分 |
100 |
用户昵称 |
forever |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.026 s |
提交时间 |
2015-07-18 08:27:48 |
内存使用 |
0.25 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int a,b,x,y;
int liu(int a,int b,int & x,int & y)
{
if(b==0)
{
x=1;
y=0;
return a;
}
int r=liu(b,a%b,y,x);
y-=a/b*x;
return r;
}
int main()
{ freopen("mod.in","r",stdin);
freopen("mod.out","w",stdout);
scanf("%d %d",&a,&b);
liu(a,b,x,y);
if(x<=0) x+=b;
printf("%d",x);
//system("pause");
return 0;
}