Submission #630152

# Submission time Handle Problem Language Result Execution time Memory
630152 2022-08-15T18:39:56 Z Hacv16 Euklid (COCI20_euklid) C++17
0 / 110
1000 ms 300 KB
#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const int MAX = 2e6 + 15;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;

#define pb push_back
#define sz(x) (int) x.size()
#define fr first
#define sc second
#define mp make_pair
#define all(x) x.begin(), x.end()
#define dbg(x) cerr << #x << ": " << "[ " << x << " ]\n"

ll r(ll a, ll b){
    if(a < b) return r(b, a);
    if(b > 1) return r(a / b, b);
    return a;
}

void find(ll a, ll b){
    if(a == b){
        cout << a << '\n';
        return;
    }

    for(ll i = a; i <= 10000; i++){
        for(ll j = a; j <= 10000; j++){
            if(__gcd(i, j) == a && r(i, j) == b){
                cout << i << ' ' << j << '\n';
                return;
            }
        }
    }
}

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL); 

    int tc; cin >> tc;

    while(tc--){
        ll a, b; cin >> a >> b;
        find(a, b);        
    }

    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Incorrect 1 ms 244 KB Unexpected end of file - int64 expected
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1091 ms 212 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 45 ms 300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 45 ms 300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -