-
c_h_y
发布于
模拟电子
-
0评论
-
16760次浏览
-
1473人收藏
-
2019-04-14 16:22
http://poj.org/problem?id=2115
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef __int64 INT ;
INT ex_gcd( INT a , INT b , INT &x ,INT &y )
{
if ( b == 0 )
{
x = 1 ;
y = ...