結果

問題 No.2767 Add to Divide
ユーザー t98slidert98slider
提出日時 2024-05-31 22:02:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 785 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 199,656 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-05-31 22:02:41
合計ジャッジ時間 5,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 = c; i >= 2; i--){
            if((b - a * i) % (i - 1) == 0){
                ans = (b - a * i) / (i - 1);
                break;
            }
        }
        cout << ans << '\n';
    }
}
0