結果

問題 No.2767 Add to Divide
ユーザー なえしらなえしら
提出日時 2024-05-31 21:37:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 404 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 69,100 KB
最終ジャッジ日時 2024-12-20 22:46:20
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,468 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 92 ms
62,228 KB
testcase_04 AC 45 ms
53,728 KB
testcase_05 AC 77 ms
60,388 KB
testcase_06 RE -
testcase_07 AC 76 ms
59,956 KB
testcase_08 AC 85 ms
60,264 KB
testcase_09 RE -
testcase_10 AC 84 ms
61,196 KB
testcase_11 AC 83 ms
60,572 KB
testcase_12 AC 82 ms
61,172 KB
testcase_13 AC 82 ms
60,232 KB
testcase_14 AC 81 ms
60,216 KB
testcase_15 AC 81 ms
60,412 KB
testcase_16 AC 79 ms
59,124 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]

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