結果

問題 No.2767 Add to Divide
ユーザー karinohitokarinohito
提出日時 2024-09-04 22:17:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 199,844 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-04 22:18:03
合計ジャッジ時間 3,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    int T;
    cin>>T;
    while(T--){
        int A,B;
        cin>>A>>B;
        B-=A;
        int an=1e9+10;
        for(int i=1;i*i<=B;i++){
            if(B%i==0){
                int e=i;
                if(e>=A)an=min(an,e-A);
                e=B/i;
                if(e>=A)an=min(an,e-A);
            }
        }
        cout<<(an<1e9+5?an:-1)<<endl;
    }
}
0