結果

問題 No.2767 Add to Divide
ユーザー titiatitia
提出日時 2024-05-31 22:22:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 208,436 KB
最終ジャッジ日時 2024-12-20 23:59:44
合計ジャッジ時間 4,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
58,548 KB
testcase_01 WA -
testcase_02 AC 319 ms
208,436 KB
testcase_03 AC 199 ms
64,328 KB
testcase_04 AC 214 ms
60,864 KB
testcase_05 AC 226 ms
61,080 KB
testcase_06 WA -
testcase_07 AC 227 ms
61,164 KB
testcase_08 AC 219 ms
61,068 KB
testcase_09 WA -
testcase_10 AC 219 ms
61,032 KB
testcase_11 AC 221 ms
62,684 KB
testcase_12 AC 223 ms
62,528 KB
testcase_13 AC 221 ms
63,092 KB
testcase_14 AC 220 ms
62,416 KB
testcase_15 AC 218 ms
62,204 KB
testcase_16 AC 210 ms
62,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

    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:
        print(-1)
    else:
        print(ANS)
            
0