結果

問題 No.2767 Add to Divide
ユーザー KeiKei
提出日時 2024-05-31 22:53:34
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 3,677 ms
コンパイル使用メモリ 282,540 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-31 22:54:18
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
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<bits/stdc++.h>
using namespace std;
const long long INF = 1e18;
vector<long long> factorize(long long d) {
  vector<long long> res;
  long long n = d;
  res.push_back(1);
  res.push_back(n);
  for (long long j = 2; j * j <= d; j++) {
    if (d % j == 0) {
      while (d % j == 0) {
        res.push_back(j);
        res.push_back(n / j);
        d /= j;
      }
    }
  }
  return res;
}
int main() {
  int T;
  cin >> T;
  while (T--) {
    long long A, B;
    cin >> A >> B;
    if (A == B) {
      cout << 0 << '\n';
      continue;
    }
    long long d = B - A;
    vector<long long> c = factorize(d);
    sort(c.begin(), c.end());
    int N = c.size();
    long long ans = INF;
    for (int i = 0; i < N; i++) {
      if (c[i] < A) continue;
      long long d = c[i] - A;
      int a = A + d;
      int b = B + d;
      if (b % a == 0) {
        ans = min(ans, d);
      }
    }
    if (ans == INF) ans = -1;
    cout << ans << '\n';
  }
}
0