結果

問題 No.2767 Add to Divide
ユーザー t98slidert98slider
提出日時 2024-05-31 22:05:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 200,424 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-31 22:05:52
合計ジャッジ時間 3,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;
    cin >> T;
    while(T--){
        ll a, b;
        cin >> a >> b;
        if(b % a == 0){
            cout << 0 << '\n';
            continue;
        }
        ll c = b / a;
        if(c == 1){
            cout << -1 << '\n';
            continue;
        }
        // c 倍以下は確定
        // A * k == B
        // (a + x) * k == (b + x)
        // a + (k - 1) * x == b
        // b - a == (k - 1) * x
        ll ans = -1;
        for(ll i = 1; i <= 50000; i++){
            if((b + i) % (a + i) == 0){
                ans = i;
                break;
            }
        }
        if(ans != -1){
            cout << ans << '\n';
            continue;
        }
        for(ll i = min(50000ll, c); i >= 2; i--){
            if((b - a * i) % (i - 1) == 0){
                ans = (b - a * i) / (i - 1);
                break;
            }
        }
        cout << ans << '\n';
    }
}
0