結果

問題 No.2767 Add to Divide
ユーザー daiotadaiota
提出日時 2024-05-31 22:22:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 171,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-31 22:22:26
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


vector<int> div(int n){
	vector<int> d;
	for(int i=1;i*i<=n;i++){
		if(n%i==0){
			d.push_back(i);
			if(i!=n/i) d.push_back(n/i);
		}
	}

	return d;
}



int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);


	int T;
	cin >> T;
	while(T--){

		int A,B;
		cin >> A >> B;

		B=B-A;
		if(B<A){
			cout << -1 << endl;
			continue;
		}

		vector<int> v=div(B);

		int mn=1e9+10;
		int n=v.size();
		REP(i,n){
			if(v[i]-A<0) continue;

			mn=min(mn,v[i]-A);
		}


		cout << mn << endl;


	}









	return 0;

}
0