首页 > 代码库 > A/B
A/B
#include <iostream> #include <string> #include <cstring> #include <cstdio> #include <cmath> #include <cstdlib> #include <algorithm> using namespace std; int extend_gcd(int a, int b, int &x, int &y) { if (b == 0) { x = 1, y = 0; return a; } int t = extend_gcd(b, a % b, y, x); y -= a / b * x; return t; } int main() { int T, n, b, x, y; cin >> T; while (T--) { cin >> n >> b; extend_gcd(9973, b, x, y); y *= n; y = (9973 + y % 9973) % 9973; cout << y << endl; } }
A/B
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。