結果

問題 No.2767 Add to Divide
ユーザー nmoonnmoon
提出日時 2024-09-09 20:48:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 62,400 KB
最終ジャッジ日時 2024-09-09 20:48:31
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,968 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 78 ms
62,400 KB
testcase_04 AC 37 ms
53,612 KB
testcase_05 AC 67 ms
61,216 KB
testcase_06 WA -
testcase_07 AC 67 ms
60,820 KB
testcase_08 AC 74 ms
60,928 KB
testcase_09 WA -
testcase_10 AC 76 ms
61,212 KB
testcase_11 AC 73 ms
60,952 KB
testcase_12 AC 82 ms
60,792 KB
testcase_13 AC 70 ms
60,420 KB
testcase_14 AC 73 ms
61,564 KB
testcase_15 AC 71 ms
61,212 KB
testcase_16 AC 72 ms
60,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for j in range(int(input())):
	a,b=map(int,input().split())
	div=[]
	g=b-a
	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