結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
58,772 KB
testcase_01 AC 62 ms
58,292 KB
testcase_02 AC 122 ms
59,452 KB
testcase_03 AC 204 ms
63,152 KB
testcase_04 AC 219 ms
59,856 KB
testcase_05 AC 216 ms
61,052 KB
testcase_06 AC 218 ms
60,512 KB
testcase_07 AC 218 ms
61,220 KB
testcase_08 AC 223 ms
62,120 KB
testcase_09 AC 227 ms
60,320 KB
testcase_10 AC 220 ms
60,448 KB
testcase_11 AC 221 ms
61,916 KB
testcase_12 AC 214 ms
62,176 KB
testcase_13 AC 225 ms
62,928 KB
testcase_14 AC 223 ms
62,520 KB
testcase_15 AC 224 ms
62,768 KB
testcase_16 AC 221 ms
61,488 KB
権限があれば一括ダウンロードができます

ソースコード

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