Submission #374297

#TimeUsernameProblemLanguageResultExecution timeMemory
374297VEGAnnEuklid (COCI20_euklid)C++14
20 / 110
1 ms364 KiB
#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;

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;

        if (g == h){
            cout << g << " " << g << '\n';
            continue;
        }

        if (h == 2){
            cout << g + g << " " << g << '\n';
            continue;
        }

        if (h * h == g){
            cout << h * h * h << " " << h * h << '\n';
            continue;
        }

        return -1;
    }

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...