This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 100000;
inline int rand(int l, int r){
static mt19937
rng(chrono::steady_clock::now().time_since_epoch().count());
uniform_int_distribution<int> ludo(l, r);
return ludo(rng);
}
inline int gcd(int a, int b){
if(a > b)return gcd(b,a);
else if(a == 0)return b;
else return gcd(b%a,a);
}
inline int R(int a, int b){
if(a < b)return R(b,a);
else if(a >= b and b > 1)return R(a/b,b);
else return a;
}
void solve(){
int g,h;
cin >> g >> h;
if(g == h)cout << h << " " << h << endl;
else if(h == 2)cout << 2*g << " " << g << endl;
else if(g == (h*h))cout << h*h << " " << h*h*h << endl;
else{
for(int i = g;i<=N;i+=g){
for(int j = i+g;j<=N;j+=g){
if(R(i,j) == h and gcd(i,j) == g){
cout << i << " " << j << endl;
return;
}
}
}
}
}
signed main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int testcase = 1;cin >> testcase;
while(testcase--)solve();
}
# | 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... |