結果

問題 No.2767 Add to Divide
ユーザー hiro1729hiro1729
提出日時 2024-05-31 21:37:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-05-31 21:37:31
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,776 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 91 ms
63,572 KB
testcase_04 AC 41 ms
53,944 KB
testcase_05 AC 73 ms
60,192 KB
testcase_06 WA -
testcase_07 AC 99 ms
60,848 KB
testcase_08 AC 92 ms
67,200 KB
testcase_09 WA -
testcase_10 AC 81 ms
61,484 KB
testcase_11 AC 83 ms
61,284 KB
testcase_12 AC 109 ms
62,104 KB
testcase_13 AC 79 ms
61,428 KB
testcase_14 AC 81 ms
61,880 KB
testcase_15 AC 107 ms
61,404 KB
testcase_16 AC 79 ms
60,648 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()
	c = 10 ** 10
	# 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 ** 10 else -1)
0