結果

問題 No.2767 Add to Divide
ユーザー haihamabossuhaihamabossu
提出日時 2024-05-31 21:42:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 204,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-31 21:42:37
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 30 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 20 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 28 ms
6,944 KB
testcase_11 AC 25 ms
6,940 KB
testcase_12 AC 24 ms
6,944 KB
testcase_13 AC 24 ms
6,940 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 24 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

vector<ll> divisors(ll n) {
  vector<ll> res;
  for (ll i = 1; i * i <= n; i++) {
    if (n % i == 0) {
      ll j = n / i;
      res.emplace_back(i);
      if (i != j) {
        res.emplace_back(j);
      }
    }
  }
  return res;
}

const ll INF = 1e18;
void solve() {
  ll a, b;
  cin >> a >> b;
  ll c = b - a;
  ll ans = INF;
  for (const ll d : divisors(c)) {
    if (a <= d)
      ans = min(ans, d - a);
  }
  if (ans == INF)
    ans = -1;
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  cin >> T;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0