結果

問題 No.2767 Add to Divide
ユーザー ああいいああいい
提出日時 2024-06-01 16:40:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 64,292 KB
最終ジャッジ日時 2024-06-01 16:40:31
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,056 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 187 ms
64,292 KB
testcase_04 AC 204 ms
61,252 KB
testcase_05 AC 127 ms
61,072 KB
testcase_06 WA -
testcase_07 AC 129 ms
60,100 KB
testcase_08 AC 203 ms
62,372 KB
testcase_09 WA -
testcase_10 AC 202 ms
61,964 KB
testcase_11 AC 204 ms
62,156 KB
testcase_12 AC 210 ms
62,020 KB
testcase_13 AC 208 ms
62,444 KB
testcase_14 AC 209 ms
63,596 KB
testcase_15 AC 203 ms
60,960 KB
testcase_16 AC 206 ms
61,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
	a,b = map(int,input().split())
	c = b - a
	if c < a:
		print(-1)
	else:
		s = set()
		for i in range(1,10 ** 5):
			if c % i == 0:
				s.add(i)
				s.add(c // i)
		s.add(c)
		ans = 10 ** 20
		for k in s:
			if k >= a and k - a < ans:ans = k - a
		print(ans)
0