# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
374324 |
2021-03-07T07:46:10 Z |
VEGAnn |
Euklid (COCI20_euklid) |
C++14 |
|
1000 ms |
492 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;
bool was = 0;
for (int i = 1; i <= 1000 && !was; i++)
for (int j = 1; j <= 1000 && !was; j++)
if (__gcd(i, j) == g && R(i, j) == h){
cout << i << " " << j;
was = 1;
break;
}
// for (ll i = g; ; i += g){
// for (ll i = 1; ; i++){
// if (R(i, g) == h){
// cout << g << " " << i << '\n';
// break;
// }
// }
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
19 ms |
492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1039 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
19 ms |
492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |