結果

問題 No.2767 Add to Divide
ユーザー HIcoderHIcoder
提出日時 2024-08-15 23:10:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 928 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 118,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-15 23:10:21
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;


ll solve(){
    ll A,B;
    cin>>A>>B;
    ll d=B-A;
    if(d==0){
        return 0;
    }
    ll C=INF;
    for(ll m=1;m*m<=d;m++){
        if(d%m==0){
            if(m>=A){
                C=min(C,m);
            }
            if(d/m>=A){
                C=min(C,d/m);
            }
        }
    }
    if(C==INF){
        return -1;
    }
    return C-A;
}

int main(){
    int T;
    cin>>T;
    vector<ll> ans(T);
    for(int t=0;t<T;t++){
        ans[t]=solve();
    }

    for(int t=0;t<T;t++){
        cout<<ans[t]<<endl;
    }
}
0