結果

問題 No.2767 Add to Divide
ユーザー VvyLwVvyLw
提出日時 2024-06-01 12:15:58
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 111,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-01 12:16:01
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
inline std::vector<int64_t> div(const int64_t n) noexcept {
    std::vector<int64_t> d;
    for(int64_t i = 1; i * i <= n; ++i) {
        if(n % i == 0) {
            d.emplace_back(i);
            if(i * i != n) {
                d.emplace_back(n / i);
            }
        }
    }
    std::ranges::sort(d);
    return d;
}
inline int64_t solve() noexcept {
    int64_t a, b;
    std::cin >> a >> b;
    const auto d = div(b - a);
    const auto it = std::ranges::lower_bound(d, a);
    return it == d.cend() ? -1 : *it - a;
}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int t;
    std::cin >> t;
    while(t--) {
        std::cout << solve() << '\n';
    }
}
0