結果

問題 No.2767 Add to Divide
ユーザー hamo21hamo21
提出日時 2024-05-31 21:47:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 2,186 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 206,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-31 21:48:01
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;
typedef int64_t ll;
//using mint=modint998244353;

typedef long double ld;
const ll MOD=1000000007;
const ll MODA=998244353;
ll vx[4]={0,1,0,-1};
ll vy[4]={1,0,-1,0};
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
long long gcd(long long a,long long b){
    a=abs(a);
    b=abs(b);
    ll gcdmax=max(a,b);
    ll gcdmin=min(a,b);
    if(gcdmin==0)return gcdmax;
    while(true){
        if(gcdmax%gcdmin==0)break;
        else gcdmax%=gcdmin;
        swap(gcdmin,gcdmax);
    }
    return gcdmin;
}
ll pow(ll N,ll P,ll M){
    if(P==0)return 1;
    else if(P%2==0){
        ll t=pow(N,P/2,M);
        return t*t%M;
    }
    else return N*pow(N,P-1,M)%M;
}
ll pow(ll N,ll P){
    if(P==0)return 1;
    else if(P%2==0){
        ll t=pow(N,P/2);
        return t*t;
    }
    else return N*pow(N,P-1);
}

vector<ll> fac;
vector<ll> finv;
vector<ll> inv;
void COMinit(ll N,ll P){
    rep(i,N+1){
        if(i==0){
            fac.push_back(1);
            finv.push_back(1);
            inv.push_back(1);
        }
        else if(i==1){
            fac.push_back(1);
            finv.push_back(1);
            inv.push_back(1);
        }
        else{
            fac.push_back(fac.at(i-1)*i%P);
            inv.push_back(P-inv.at(P%i)*(P/i)%P);
            finv.push_back(finv.at(i-1)*inv.at(i)%P);
        }
    }
}

ll COM(ll n,ll k,ll P){
    if(n<k)return 0;
    if(n<0||k<0)return 0;
    return fac.at(n)*(finv.at(k)*finv.at(n-k)%P)%P;
}

vector<ll> find_divisor(ll N){
    vector<ll> A;
    for(ll i=1;i*i<=N;i++){
        if(N%i==0)A.push_back(i);
    }
     ll l=A.size();
    rep(i,l){
        if(A.at(l-i-1)*A.at(l-i-1)!=N)A.push_back(N/A.at(l-1-i));
    }
    return A;
}

int main(){
    ll T;
    cin>>T;
    vector<ll> Ans(T);
    rep(t,T){
        ll a,b;
        cin>>a>>b;
        if(b==a){
            Ans[t]=0;
            continue;
        }
        ll k=b-a;
        vector<ll> d=find_divisor(k);
        Ans[t]=-1;
        for(ll x:d){
            if(x>=a){
                Ans[t]=x-a;
                break;
            }
        }
    }
    for(ll x:Ans)cout<<x<<endl;
}
0