結果

問題 No.2767 Add to Divide
ユーザー shobonvipshobonvip
提出日時 2024-05-31 22:40:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 62,072 KB
最終ジャッジ日時 2024-05-31 22:40:58
合計ジャッジ時間 2,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,388 KB
testcase_01 AC 42 ms
58,048 KB
testcase_02 AC 38 ms
52,624 KB
testcase_03 AC 89 ms
62,072 KB
testcase_04 AC 40 ms
54,524 KB
testcase_05 AC 71 ms
60,220 KB
testcase_06 AC 70 ms
60,072 KB
testcase_07 AC 72 ms
60,648 KB
testcase_08 AC 81 ms
61,492 KB
testcase_09 AC 77 ms
59,640 KB
testcase_10 AC 78 ms
59,968 KB
testcase_11 AC 81 ms
60,832 KB
testcase_12 AC 80 ms
61,912 KB
testcase_13 AC 78 ms
60,868 KB
testcase_14 AC 77 ms
61,692 KB
testcase_15 AC 75 ms
60,148 KB
testcase_16 AC 75 ms
61,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def makediv(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]

def solve():
	a, b = map(int,input().split())
	if b % a == 0:
		print(0)
		return
	d = makediv(b - a)
	x = 10 ** 18
	for i in d:
		if i - a < 0: continue
		x = min(x, i - a)
	if x == 10 ** 18:
		print(-1)
	else:
		print(x)


T = int(input())
for _ in range(T):
	solve()
0