結果

問題 No.2767 Add to Divide
ユーザー elpheelphe
提出日時 2024-07-04 19:25:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 67,712 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 19:25:05
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 7 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;
        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