結果

問題 No.2767 Add to Divide
ユーザー ThetaTheta
提出日時 2024-07-12 17:05:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-07-12 17:05:24
合計ジャッジ時間 3,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
66,816 KB
testcase_01 AC 74 ms
66,944 KB
testcase_02 AC 72 ms
66,432 KB
testcase_03 AC 119 ms
70,272 KB
testcase_04 AC 76 ms
66,944 KB
testcase_05 AC 95 ms
68,352 KB
testcase_06 AC 95 ms
67,968 KB
testcase_07 AC 94 ms
68,096 KB
testcase_08 AC 111 ms
68,864 KB
testcase_09 AC 109 ms
68,608 KB
testcase_10 AC 110 ms
68,608 KB
testcase_11 AC 110 ms
68,608 KB
testcase_12 AC 110 ms
69,120 KB
testcase_13 AC 110 ms
68,480 KB
testcase_14 AC 107 ms
68,992 KB
testcase_15 AC 117 ms
68,352 KB
testcase_16 AC 107 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from typing import List
from math import floor, sqrt


def calc_positive_divisors(num: int) -> List[int]:
    small_divisors = []
    large_divisors = []
    for n in range(1, floor(sqrt(num)) + 1):
        if num % n == 0:
            small_divisors.append(n)
            large_divisors.append(num // n)
    if small_divisors[-1] == large_divisors[-1]:
        large_divisors.pop()
    divisors = small_divisors + list(reversed(large_divisors))
    return divisors


def main():
    for _ in range(int(input())):
        A, B = map(int, input().split())
        if B % A == 0:
            print(0)
            continue
        if A * 2 > B:
            print(-1)
            continue
        multiple = B // A

        divisors = calc_positive_divisors(B - A)
        idx = bisect_right(divisors, multiple - 1)
        print((B - (divisors[idx - 1] + 1) * A) // divisors[idx - 1])

        # (B+X) = M(A+X)
        # B-MA = (M-1)X
        # X = (B-MA)/(M-1)
        # X = (B-A-(M-1)A)/(M-1)


if __name__ == "__main__":
    main()
0