ac-library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub habara-k/ac-library

:heavy_check_mark: test/extgcd.test.cpp

Depends on

Code

#define PROBLEM "https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=NTL_1_E"

#include <atcoder/math_enhanced>
#include <iostream>

using namespace atcoder;
using namespace std;

int main() {
    int a, b; cin >> a >> b;
    int x, y;
    extgcd(a, b, x, y);
    cout << x << ' ' << y << endl;
}
#line 1 "test/extgcd.test.cpp"
#define PROBLEM "https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=NTL_1_E"

#include <atcoder/math_enhanced>
#include <iostream>

using namespace atcoder;
using namespace std;

int main() {
    int a, b; cin >> a >> b;
    int x, y;
    extgcd(a, b, x, y);
    cout << x << ' ' << y << endl;
}
Back to top page