結果

問題 No.2767 Add to Divide
ユーザー InTheBloomInTheBloom
提出日時 2024-05-31 22:04:57
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 108,304 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-31 22:05:00
合計ジャッジ時間 1,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        x /= 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;
    }


    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