結果

問題 No.2767 Add to Divide
ユーザー なえしらなえしら
提出日時 2024-08-04 19:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 62,020 KB
最終ジャッジ日時 2024-08-04 19:49:16
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,212 KB
testcase_01 AC 41 ms
58,116 KB
testcase_02 AC 39 ms
52,872 KB
testcase_03 AC 85 ms
62,020 KB
testcase_04 AC 40 ms
53,664 KB
testcase_05 AC 70 ms
61,176 KB
testcase_06 AC 69 ms
61,688 KB
testcase_07 AC 69 ms
60,644 KB
testcase_08 AC 93 ms
60,712 KB
testcase_09 AC 75 ms
61,536 KB
testcase_10 AC 76 ms
60,448 KB
testcase_11 AC 74 ms
59,780 KB
testcase_12 AC 75 ms
60,620 KB
testcase_13 AC 74 ms
60,812 KB
testcase_14 AC 75 ms
61,524 KB
testcase_15 AC 73 ms
60,604 KB
testcase_16 AC 72 ms
60,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
def divisors(n):
  r = isqrt(n-1)+1
  small, large = [], []
  for i in range(1, r):
    if n%i == 0:
      small.append(i)
      large.append(n//i)
  if r**2 == n: small.append(r)
  return small + large[::-1]

for _ in range(T := int(input())):
  A, B = map(int, input().split())
  if A == B: print(0); continue
  D = divisors(B - A)
  for d in D:
    if A <= d: print(d - A); break
  else: print(-1)
0