結果

問題 No.2767 Add to Divide
ユーザー elpheelphe
提出日時 2024-07-04 19:27:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 68,284 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 19:27:03
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <climits>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int T, i, A, B, j, min;
    cin >> T;
    for (i = 0; i != T; ++i)
    {
        min = INT_MAX;
        cin >> A >> B;
        const int gap = B - A;
        if (gap == 0)
        {
            cout << "0\n";
            continue;
        }

        for (j = 1; j * j <= gap; ++j)
            if (gap % j == 0)
            {
                if (j >= A)
                {
                    if (j - A < min)
                        min = j - A;
                }
                else if (gap / j >= A)
                {
                    if (gap / j - A < min)
                        min = gap / j - A;
                }
            }

        if (min == INT_MAX) cout << "-1\n";
        else cout << min << '\n';
    }

    return 0;
}
0