# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
374314 |
2021-03-07T07:40:46 Z |
VEGAnn |
Euklid (COCI20_euklid) |
C++14 |
|
1000 ms |
512 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long ll;
const ld E = 1e-9;
const int N = 1010;
ll h, g;
ll R(ll a, ll b){
if (b > a)
return R(b, a);
if (b == 1) return a;
return R(a / b, b);
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef _LOCAL
freopen("in.txt","r",stdin);
#endif // _LOCAL
int qq; cin >> qq;
for (; qq; qq--){
cin >> g >> h;
// for (ll i = g; ; i += g){
for (ll i = 1; ; i++){
if (__gcd(i, g) == g && R(i, g) == h){
cout << g << " " << i << '\n';
break;
}
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
236 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Correct |
265 ms |
492 KB |
Output is correct |
5 |
Correct |
172 ms |
492 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Execution timed out |
1083 ms |
364 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
364 KB |
Output is correct |
2 |
Execution timed out |
1090 ms |
364 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1051 ms |
268 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1051 ms |
268 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
236 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Correct |
265 ms |
492 KB |
Output is correct |
5 |
Correct |
172 ms |
492 KB |
Output is correct |
6 |
Correct |
1 ms |
364 KB |
Output is correct |
7 |
Correct |
1 ms |
364 KB |
Output is correct |
8 |
Execution timed out |
1083 ms |
364 KB |
Time limit exceeded |
9 |
Halted |
0 ms |
0 KB |
- |