結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,568 KB
testcase_01 WA -
testcase_02 AC 283 ms
208,564 KB
testcase_03 AC 187 ms
62,828 KB
testcase_04 AC 200 ms
60,208 KB
testcase_05 AC 203 ms
60,572 KB
testcase_06 WA -
testcase_07 AC 205 ms
61,128 KB
testcase_08 AC 196 ms
61,156 KB
testcase_09 WA -
testcase_10 AC 201 ms
60,456 KB
testcase_11 AC 203 ms
61,756 KB
testcase_12 AC 204 ms
64,000 KB
testcase_13 AC 203 ms
62,196 KB
testcase_14 AC 203 ms
61,752 KB
testcase_15 AC 202 ms
62,892 KB
testcase_16 AC 204 ms
62,640 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