結果

問題 No.2767 Add to Divide
ユーザー titiatitia
提出日時 2024-06-01 00:49:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 63,152 KB
最終ジャッジ日時 2024-12-21 02:33:23
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    A,B=map(int,input().split())

    if A==B:
        print(0)
        continue

    u=B-A
    L=[]

    for i in range(1,10**5):
        if u%i==0:
            L.append(i)
            L.append(u//i)

    ANS=1<<63

    for l in L:
        if l>=A:
            ANS=min(ANS,l-A)

    if ANS==1<<63:
        ANS=-1
        print(ANS)
    else:
        print(ANS)
            
0