记录编号 320515 评测结果 AAAAAAAAAA
题目名称 [NOIP 2012]同余方程 最终得分 100
用户昵称 GravatarAntiLeaf 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2016-10-12 07:48:07 内存使用 0.29 MiB
显示代码纯文本
  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. #define LL long long
  5. using namespace std;
  6. LL gcd(LL,LL);
  7. void exgcd(LL,LL,LL&,LL&,LL&);
  8. LL a,b,x,y,c;
  9. int main(){
  10. #define MINE
  11. #ifdef MINE
  12. freopen("mod.in","r",stdin);
  13. freopen("mod.out","w",stdout);
  14. #endif
  15. scanf("%lld%lld",&a,&b);
  16. exgcd(a,b,c,x,y);
  17. printf("%lld",(x+b)%b);
  18. #ifndef MINE
  19. printf("\n-------------------------DONE-------------------------\n");
  20. for(;;);
  21. #endif
  22. return 0;
  23. }
  24. LL gcd(LL a,LL b){return b==0ll?a:gcd(b,a%b);}
  25. void exgcd(LL a,LL b,LL &c,LL &x,LL &y){
  26. if(b==0ll){
  27. c=a;
  28. x=1;
  29. y=0;
  30. return;
  31. }
  32. exgcd(b,a%b,c,x,y);
  33. LL tmp=x;
  34. x=y;
  35. y=tmp-a/b*y;
  36. }