이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
int calc(int a, int b) {
while(a != 1) {
//cerr << a << " " << b << "\n";
if(b < a) {
swap(a, b);
continue;
}
int _a = a;
a = b / a;
b = _a;
}
return b;
}
#define ONLINE_JUDGE
void solve() {
int a, b;
cin >> a >> b;
/*
for(int l = 1; l <= 2500; l++) {
for(int r = l; r <= 2500; r++) {
if(__gcd(l, r) == a && calc(l, r) == b) {
cout << l << " " << r << "\n";
}
}
}*/
int carpan = 1;
while(a * (carpan) < b)
carpan++;
cout << a * carpan << " " << a * b * carpan + a << "\n";
return;
}
signed main() {
#ifndef ONLINE_JUDGE
freopen(".in", "r", stdin);
freopen(".out", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int t = 1; cin >> t;
for(int i = 1; i <= t; i++) {
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... |