結果

問題 No.2767 Add to Divide
ユーザー i_takui_taku
提出日時 2024-06-01 20:22:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 66,448 KB
最終ジャッジ日時 2024-06-01 20:22:57
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,432 KB
testcase_01 AC 37 ms
58,320 KB
testcase_02 AC 33 ms
53,044 KB
testcase_03 AC 80 ms
63,756 KB
testcase_04 AC 34 ms
53,176 KB
testcase_05 AC 62 ms
60,360 KB
testcase_06 AC 66 ms
60,252 KB
testcase_07 AC 65 ms
61,300 KB
testcase_08 AC 80 ms
66,448 KB
testcase_09 AC 69 ms
60,048 KB
testcase_10 AC 68 ms
60,700 KB
testcase_11 AC 70 ms
61,416 KB
testcase_12 AC 71 ms
62,272 KB
testcase_13 AC 71 ms
60,936 KB
testcase_14 AC 72 ms
61,188 KB
testcase_15 AC 67 ms
60,936 KB
testcase_16 AC 81 ms
61,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors, upper_divisors = [], []
    i = 1
    while i**2 <= 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())
ans = []
for _ in range(T):
    A, B = map(int, input().split())
    if A == B:
        ans.append(0)
        continue
    divs = make_divisors(B - A)
    X = []
    for div in divs:
        x = div - A
        if 0 <= x:
            X.append(x)
    ans.append(min(X) if X else -1)
print(*ans, sep='\n')
0