結果

問題 No.2767 Add to Divide
ユーザー anonymouslyanonymously
提出日時 2024-05-31 22:20:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-20 23:54:28
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n, a):
    result = []
    i = 1
    while i*i <= n:
        if n % i == 0:
            if i >= a:
                result.append(i)
            if i*i < n and n >= a*i:
                result.append(n//i)
        i += 1
    return sorted(result)


def solve(a, b):
    if a == b:
        return 0
    d = divisors(b-a, a)
    if d:
        return d[0]-a
    else:
        return -1


for t in range(int(input())):
    print(solve(*[int(a) for a in input().split()]))
0