結果

問題 No.2767 Add to Divide
ユーザー nmoonnmoon
提出日時 2024-09-09 20:54:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 62,376 KB
最終ジャッジ日時 2024-09-09 20:54:09
合計ジャッジ時間 2,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,844 KB
testcase_01 AC 46 ms
58,676 KB
testcase_02 AC 40 ms
53,176 KB
testcase_03 AC 88 ms
62,376 KB
testcase_04 AC 42 ms
53,700 KB
testcase_05 AC 76 ms
60,960 KB
testcase_06 AC 75 ms
60,924 KB
testcase_07 AC 93 ms
60,856 KB
testcase_08 AC 83 ms
61,840 KB
testcase_09 AC 81 ms
61,224 KB
testcase_10 AC 84 ms
61,576 KB
testcase_11 AC 82 ms
61,216 KB
testcase_12 AC 82 ms
61,420 KB
testcase_13 AC 80 ms
60,588 KB
testcase_14 AC 81 ms
60,252 KB
testcase_15 AC 79 ms
60,364 KB
testcase_16 AC 80 ms
60,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for j in range(int(input())):
	a,b=map(int,input().split())
	div=[]
	g=b-a
	if g==0:
	  print(0)
	  continue
	for i in range(1,int(g**0.5)+1):
		if g%i==0:
			div.append(i)
			div.append(g//i)
	div.sort()
	for i in div:
	  if i>=a:
	    if (b-a+i)%i==0:
	      print(i-a)
	      break
	else:
	  print(-1)
0