답안 #374387

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
374387 2021-03-07T09:02:25 Z VEGAnn Euklid (COCI20_euklid) C++14
0 / 110
1000 ms 32492 KB
#include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long ll;
const ld E = 1e-9;
const int N = 2010;
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;

        ll beg = g * ((h + g - 1) / g);

        for (ll i = beg; ; i += beg)
            if (R(i, beg) == h){
                cout << beg << " " << i << '\n';
                continue;
            }
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1093 ms 32492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1095 ms 25708 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1086 ms 19220 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1029 ms 30056 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1029 ms 30056 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1093 ms 32492 KB Time limit exceeded
2 Halted 0 ms 0 KB -