結果

問題 No.2767 Add to Divide
ユーザー イルカイルカ
提出日時 2024-06-10 16:20:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-06-10 16:20:33
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 41 ms
57,216 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 83 ms
61,696 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 71 ms
59,776 KB
testcase_06 AC 73 ms
59,904 KB
testcase_07 AC 68 ms
59,904 KB
testcase_08 AC 78 ms
60,160 KB
testcase_09 AC 75 ms
59,648 KB
testcase_10 AC 76 ms
60,416 KB
testcase_11 AC 77 ms
59,136 KB
testcase_12 AC 79 ms
60,032 KB
testcase_13 AC 77 ms
58,880 KB
testcase_14 AC 75 ms
59,776 KB
testcase_15 AC 74 ms
58,912 KB
testcase_16 AC 73 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# n(A+X)=B+X
# B-A = (n-1)(A+X)
# n-1=(B-A)/(A+X)<=(B-A)/Aより、B-Aの約数であって(B-A)/A以下なn-1を上からしらべればよさそう

# 約数列挙O(√n)
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

T = int(input())
for _ in range(T):
    A, B = map(int, input().split())
    if A==B:
        print(0)
        continue
    div = make_divisors(B-A)
    ans = -1
    for d in div[::-1]:
        if (B-A)/A<d:
            continue
        n = d+1
        ans = (B-n*A)/(n-1)
        break
    print(int(ans))
"🐬💦"
0