結果

問題 No.2767 Add to Divide
ユーザー ra5anchorra5anchor
提出日時 2024-06-04 05:05:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-06-04 05:05:26
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,344 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 88 ms
60,544 KB
testcase_04 AC 42 ms
52,608 KB
testcase_05 AC 76 ms
59,520 KB
testcase_06 WA -
testcase_07 AC 83 ms
59,392 KB
testcase_08 AC 79 ms
59,264 KB
testcase_09 WA -
testcase_10 AC 89 ms
59,008 KB
testcase_11 AC 82 ms
58,624 KB
testcase_12 AC 80 ms
59,264 KB
testcase_13 AC 79 ms
58,496 KB
testcase_14 AC 79 ms
59,264 KB
testcase_15 AC 78 ms
59,136 KB
testcase_16 AC 79 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
    res_low, res_high = [], []
    i = 1
    while i * i <= n:
        if n % i == 0:
            res_low.append(i)
            if i != n // i:
                res_high.append(n // i)
        i += 1
    return res_low + res_high[::-1]

def f(dv, a):
    for x in dv:
        if a <= x:
            return x
    return -1


T = int(input())
for t in range(T):
    a, b = map(int, input().split())
    dv = divisors(b-a)
    res = f(dv, a)
    if res == -1:
        print(-1)
    else:
        print(res - a)
0