結果

問題 No.2767 Add to Divide
ユーザー なえしらなえしら
提出日時 2024-08-04 19:44:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 61,616 KB
最終ジャッジ日時 2024-08-04 19:44:23
合計ジャッジ時間 2,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,300 KB
testcase_01 AC 40 ms
57,928 KB
testcase_02 AC 38 ms
52,464 KB
testcase_03 AC 79 ms
61,616 KB
testcase_04 AC 40 ms
54,152 KB
testcase_05 AC 69 ms
60,804 KB
testcase_06 AC 67 ms
60,104 KB
testcase_07 AC 64 ms
60,240 KB
testcase_08 AC 67 ms
59,940 KB
testcase_09 AC 68 ms
61,136 KB
testcase_10 AC 67 ms
61,376 KB
testcase_11 AC 67 ms
59,428 KB
testcase_12 AC 68 ms
60,184 KB
testcase_13 AC 74 ms
59,440 KB
testcase_14 AC 72 ms
60,344 KB
testcase_15 AC 72 ms
60,104 KB
testcase_16 AC 69 ms
60,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
  small, large = [], []
  i = 1
  while i**2 < n:
    if n%i == 0:
      small.append(i)
      large.append(n//i)
    i += 1
  if i**2 == n: small.append(i)
  return small + large[::-1]

T = int(input())
for _ in range(T):
  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