結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
58,836 KB
testcase_01 WA -
testcase_02 AC 1,822 ms
268,860 KB
testcase_03 AC 1,444 ms
63,976 KB
testcase_04 AC 1,659 ms
59,800 KB
testcase_05 AC 1,645 ms
60,704 KB
testcase_06 WA -
testcase_07 AC 1,599 ms
60,580 KB
testcase_08 AC 1,614 ms
60,980 KB
testcase_09 WA -
testcase_10 AC 1,629 ms
61,988 KB
testcase_11 AC 1,642 ms
61,960 KB
testcase_12 AC 1,644 ms
62,388 KB
testcase_13 AC 1,639 ms
61,708 KB
testcase_14 AC 1,635 ms
62,992 KB
testcase_15 AC 1,642 ms
64,308 KB
testcase_16 AC 1,627 ms
62,696 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