結果

問題 No.2767 Add to Divide
ユーザー InTheBloomInTheBloom
提出日時 2024-05-31 22:08:20
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 1,205 ms
コンパイル使用メモリ 107,084 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-31 22:08:23
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 47 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 29 ms
6,944 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 28 ms
6,944 KB
testcase_08 AC 36 ms
6,940 KB
testcase_09 AC 37 ms
6,940 KB
testcase_10 AC 34 ms
6,944 KB
testcase_11 AC 39 ms
6,944 KB
testcase_12 AC 36 ms
6,944 KB
testcase_13 AC 37 ms
6,940 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 34 ms
6,944 KB
testcase_16 AC 33 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using ll = long long;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

vector<int> divisors (int x) {
    vector<int> res;
    for (int i = 1; 1LL * i * i <= x; i++) {
        if (x % i == 0) res.push_back(i);
        if (1LL * i * i == x) continue;
        res.push_back(x / i);
    }

    sort(res.begin(), res.end());
    return res;
}

void solve (int A, int B) {
    if (A == 1) {
        cout << 0 << "\n";
        return;
    }
    if (A == B) {
        cout << 0 << "\n";
        return;
    }

    auto d = divisors(B - A);

    int ans = -1;
    for (auto v : d) {
        if (A <= v) {
            int candi = v - A;
            if ((B + candi) % (A + candi) == 0) {
                ans = candi;
                break;
            }
        }
    }

    cout << ans << "\n";
}

int main () {
    int T; cin >> T;
    for (int i = 0; i < T; i++) {
        int A, B; cin >> A >> B;
        solve(A, B);
    }
}
0