結果

問題 No.2767 Add to Divide
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-01 03:58:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-06-01 03:58:04
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,232 KB
testcase_01 AC 45 ms
60,084 KB
testcase_02 AC 40 ms
53,076 KB
testcase_03 AC 88 ms
61,568 KB
testcase_04 AC 42 ms
53,028 KB
testcase_05 AC 74 ms
60,320 KB
testcase_06 AC 73 ms
60,420 KB
testcase_07 AC 73 ms
60,104 KB
testcase_08 AC 81 ms
59,876 KB
testcase_09 AC 80 ms
60,408 KB
testcase_10 AC 79 ms
60,812 KB
testcase_11 AC 81 ms
60,368 KB
testcase_12 AC 80 ms
59,908 KB
testcase_13 AC 80 ms
60,732 KB
testcase_14 AC 80 ms
60,500 KB
testcase_15 AC 79 ms
61,364 KB
testcase_16 AC 79 ms
60,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
  a,b=map(int,input().split())
  if b%a==0:
    print(0)
    continue
  b=b-a
  ans=10**10
  for i in range(1,int(b**0.5)+1):
    if b%i==0:
      if i>a:
        ans=min(ans,i-a)
      if (b//i)>a:
        ans=min(ans,b//i-a)
  print(ans if ans<10**10 else -1)
0