結果

問題 No.2767 Add to Divide
ユーザー なえしらなえしら
提出日時 2024-08-04 19:42:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 61,928 KB
最終ジャッジ日時 2024-08-04 19:42:22
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,544 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 79 ms
61,928 KB
testcase_04 AC 38 ms
53,284 KB
testcase_05 AC 70 ms
60,348 KB
testcase_06 WA -
testcase_07 AC 66 ms
60,612 KB
testcase_08 AC 71 ms
60,616 KB
testcase_09 WA -
testcase_10 AC 73 ms
60,456 KB
testcase_11 AC 71 ms
60,012 KB
testcase_12 AC 68 ms
60,064 KB
testcase_13 AC 66 ms
59,752 KB
testcase_14 AC 70 ms
60,328 KB
testcase_15 AC 68 ms
60,604 KB
testcase_16 AC 69 ms
60,408 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())
  D = divisors(B - A)
  for d in D:
    if A <= d: print(d - A); break
  else: print(-1)
0