結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
58,480 KB
testcase_01 WA -
testcase_02 AC 1,778 ms
268,212 KB
testcase_03 AC 1,426 ms
63,564 KB
testcase_04 AC 1,644 ms
61,240 KB
testcase_05 AC 1,622 ms
60,844 KB
testcase_06 WA -
testcase_07 AC 1,643 ms
60,992 KB
testcase_08 AC 1,608 ms
60,384 KB
testcase_09 WA -
testcase_10 AC 1,625 ms
61,260 KB
testcase_11 AC 1,618 ms
62,620 KB
testcase_12 AC 1,614 ms
63,264 KB
testcase_13 AC 1,638 ms
62,924 KB
testcase_14 AC 1,617 ms
61,988 KB
testcase_15 AC 1,614 ms
63,828 KB
testcase_16 AC 1,639 ms
62,748 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**6):
        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