結果

問題 No.2767 Add to Divide
ユーザー tobbietobbie
提出日時 2024-07-14 22:50:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 166,572 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-07-14 22:50:26
合計ジャッジ時間 5,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, N) for (int i = 0; i < (int)N; i++)

int main() {
  int T;
  cin >> T;
  rep(i, T) {
    int A, B;
    cin >> A >> B;
    int k = B / A;
    int X = -1;
    while (k > 0) {
      if (k == 1) {
	if (A == B)
	  X = 0;
	break;
      }
      if ((B - k*A) % (k-1) == 0) {
	X = (B - k*A) / (k-1);
	break;
      }
      k--;
    }
    cout << X << endl;
  }
  return 0;
}
0