結果

問題 No.2767 Add to Divide
ユーザー detteiuudetteiuu
提出日時 2024-05-31 21:40:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 61,596 KB
最終ジャッジ日時 2024-05-31 21:40:30
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,084 KB
testcase_01 AC 43 ms
58,740 KB
testcase_02 AC 40 ms
54,708 KB
testcase_03 AC 83 ms
61,596 KB
testcase_04 AC 41 ms
53,592 KB
testcase_05 AC 60 ms
59,840 KB
testcase_06 AC 63 ms
60,700 KB
testcase_07 AC 62 ms
59,360 KB
testcase_08 AC 78 ms
59,880 KB
testcase_09 AC 78 ms
61,440 KB
testcase_10 AC 77 ms
60,036 KB
testcase_11 AC 84 ms
60,156 KB
testcase_12 AC 74 ms
60,516 KB
testcase_13 AC 75 ms
60,180 KB
testcase_14 AC 76 ms
60,268 KB
testcase_15 AC 73 ms
59,364 KB
testcase_16 AC 73 ms
60,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

T = int(input())

def divisor(n):
    ans = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            ans.append(i)
            if i*i != n:
                ans.append(n//i)
    return sorted(ans)

for _ in range(T):
    A, B = map(int, input().split())
    if B % A == 0:
        print(0)
        continue
    diff = B-A
    if diff < A:
        print(-1)
    else:
        D = divisor(diff)
        b = bisect_left(D, A)
        if b < len(D):
            print(D[b]-A)
        else:
            print(-1)
0