結果

問題 No.2767 Add to Divide
ユーザー hiro1729hiro1729
提出日時 2024-05-31 21:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 68,472 KB
最終ジャッジ日時 2024-05-31 21:47:11
合計ジャッジ時間 2,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,780 KB
testcase_01 AC 39 ms
57,908 KB
testcase_02 AC 34 ms
53,560 KB
testcase_03 AC 81 ms
63,844 KB
testcase_04 AC 37 ms
53,560 KB
testcase_05 AC 70 ms
60,932 KB
testcase_06 AC 68 ms
59,900 KB
testcase_07 AC 67 ms
60,748 KB
testcase_08 AC 87 ms
68,472 KB
testcase_09 AC 74 ms
61,236 KB
testcase_10 AC 76 ms
61,292 KB
testcase_11 AC 79 ms
61,160 KB
testcase_12 AC 85 ms
63,056 KB
testcase_13 AC 77 ms
61,092 KB
testcase_14 AC 77 ms
61,916 KB
testcase_15 AC 73 ms
62,344 KB
testcase_16 AC 76 ms
60,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

for _ in R(I()):
	a, b = M()
	if a == b:
		print(0)
		continue
	c = 10 ** 15
	# b - a の約数を全探索
	for i in make_divisors(b - a):
		if i >= a and (b + i - a) % (a + i - a) == 0:
			c = min(c, i - a)
	print(c if c < 10 ** 15 else -1)
0