이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mp make_pair
#define X first
#define Y second
using namespace std;
typedef long long ll;
typedef pair <int, int> ii;
int g, h;
void readInput(){
cin >> g >> h;
}
ll R(ll a, ll b){
if (b == 1)
return a;
if (a < b)
return R(b, a);
return R(a / b, b);
}
void solve(){
ll l = 1, r = 1;
while ((l + g - 1) / g * g > r){
l *= h;
r = r * h + h - 1;
}
ll a = (l + g - 1) / g * g;
ll b = h * a + g;
//assert(__gcd(a, b) == g);
//assert(R(a, b) == h);
cout << a << ' ' << b << endl;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while (t--){
readInput();
solve();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |