Submission #513191

#TimeUsernameProblemLanguageResultExecution timeMemory
513191KoDEuklid (COCI20_euklid)C++17
4 / 110
1 ms204 KiB
#include <bits/stdc++.h>

using std::vector;
using std::array;
using std::pair;
using std::tuple;

using i64 = std::int64_t;

constexpr i64 ceil_div(const i64 a, const i64 b) {
    return (a + b - 1) / b;
}

pair<i64, i64> solve(const i64 G, const i64 H) {
    i64 low = H, high = 2 * H - 1;
    while (high - low + 1 < G) {
        low = low * H + 0;
        high = high * H + (H - 1);
    }
    i64 a = ceil_div(low, G) * G;
    return {a, a * H + G};
}

int main() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int Q;
    std::cin >> Q;
    while (Q--) {
        i64 G, H;
        std::cin >> G >> H;
        const auto [a, b] = solve(G, H);
        std::cout << a << ' ' << b << '\n';
    }
    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...