# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
854497 |
2023-09-27T18:29:09 Z |
vjudge1 |
Euklid (COCI20_euklid) |
C++17 |
|
1 ms |
356 KB |
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define int i64
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 |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
356 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
356 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |