結果

問題 No.2767 Add to Divide
ユーザー dp_ijkdp_ijk
提出日時 2024-06-18 01:09:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2024-06-18 01:09:18
合計ジャッジ時間 3,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,408 KB
testcase_01 AC 45 ms
59,416 KB
testcase_02 AC 42 ms
54,132 KB
testcase_03 AC 94 ms
61,208 KB
testcase_04 AC 43 ms
53,988 KB
testcase_05 AC 72 ms
61,128 KB
testcase_06 AC 71 ms
61,248 KB
testcase_07 AC 72 ms
60,152 KB
testcase_08 AC 80 ms
61,684 KB
testcase_09 AC 78 ms
60,272 KB
testcase_10 AC 80 ms
61,344 KB
testcase_11 AC 78 ms
60,656 KB
testcase_12 AC 79 ms
60,348 KB
testcase_13 AC 79 ms
60,636 KB
testcase_14 AC 79 ms
61,824 KB
testcase_15 AC 77 ms
60,852 KB
testcase_16 AC 78 ms
59,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(X):
   assert X >= 1
   from math import isqrt
   head = [d for d in range(1, isqrt(X) + 1) if X%d == 0]
   tail = [X//d for d in reversed(head)]
   if isqrt(X)**2 == X:
      head.pop()
   return head + tail



def solve(A, B):
   if A == B:
      return 0
   D = B-A
   for d in divisors(D):
      if d < A:
         continue
      else:
         X = d-A
         break
   else:
      return -1
   return X


T = int(input())
for _ in range(T):
   A, B = map(int, input().split())
   ans = solve(A, B)
   print(ans)
0