結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,908 KB
testcase_01 AC 48 ms
58,364 KB
testcase_02 AC 41 ms
52,612 KB
testcase_03 AC 91 ms
60,552 KB
testcase_04 AC 41 ms
53,424 KB
testcase_05 AC 72 ms
59,552 KB
testcase_06 AC 71 ms
60,024 KB
testcase_07 AC 72 ms
60,392 KB
testcase_08 AC 80 ms
61,100 KB
testcase_09 AC 81 ms
60,644 KB
testcase_10 AC 78 ms
59,856 KB
testcase_11 AC 80 ms
61,232 KB
testcase_12 AC 76 ms
59,808 KB
testcase_13 AC 77 ms
61,780 KB
testcase_14 AC 79 ms
61,332 KB
testcase_15 AC 81 ms
61,484 KB
testcase_16 AC 81 ms
60,420 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