結果

問題 No.2767 Add to Divide
ユーザー tnakao0123tnakao0123
提出日時 2024-06-01 12:08:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 43,904 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-01 12:08:56
合計ジャッジ時間 1,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 8 ms
6,948 KB
testcase_08 AC 10 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 AC 9 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2767.cc:  No.2767 Add to Divide - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int INF = 1 << 30;

/* typedef */

/* global variables */

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int a, b;
    scanf("%d%d", &a, &b);

    if (b % a == 0) puts("0");
    else {
      // b+x=k(a+x) [k>=2,x>0] -> b-a=k(a+x)-a-x=(k-1)(a+x)
      int minx = INF, d = b - a;
      for (int p = 1; p * p <= d; p++)
	if (d % p == 0) {
	  int q = d / p;
	  if (p >= a) minx = min(minx, p - a);
	  if (q >= a) minx = min(minx, q - a);
	}
      printf("%d\n", (minx < INF) ? minx : -1);
    }
  }

  return 0;
}
0