记录编号 |
326048 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2012]同余方程 |
最终得分 |
100 |
用户昵称 |
Lethur |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.020 s |
提交时间 |
2016-10-20 19:15:04 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<cstdio>
#include<cstdlib>
#include<iostream>
#define COGS
using namespace std;
inline void exgcd(int a,int b,int &x,int &y)
{
if(b!=0)
{
exgcd(b,a%b,x,y);
int r=x;
x=y;
y=r-(a/b)*x;
}
else
{
x=1;
y=0;
}
return ;
}
inline void work()
{
int a,b,x,y;
cin>>a>>b;
exgcd(a,b,x,y);
cout<<(x%b+b)%b<<endl;
return ;
}
int main()
{
#ifdef COGS
freopen("mod.in","r",stdin);
freopen("mod.out","w",stdout);
#endif
work();
return 0;
}