結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
58,368 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 195 ms
63,488 KB
testcase_04 AC 206 ms
59,648 KB
testcase_05 AC 132 ms
59,904 KB
testcase_06 WA -
testcase_07 AC 133 ms
59,136 KB
testcase_08 AC 209 ms
60,672 KB
testcase_09 WA -
testcase_10 AC 212 ms
60,800 KB
testcase_11 AC 212 ms
61,184 KB
testcase_12 AC 217 ms
61,824 KB
testcase_13 AC 213 ms
60,672 KB
testcase_14 AC 218 ms
62,080 KB
testcase_15 AC 210 ms
60,928 KB
testcase_16 AC 211 ms
61,184 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