結果

問題 No.2767 Add to Divide
ユーザー anonymouslyanonymously
提出日時 2024-05-31 22:16:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-31 22:17:03
合計ジャッジ時間 5,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 404 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 267 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 269 ms
10,752 KB
testcase_08 AC 338 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 337 ms
10,624 KB
testcase_11 AC 347 ms
10,752 KB
testcase_12 AC 332 ms
10,752 KB
testcase_13 AC 336 ms
10,624 KB
testcase_14 AC 326 ms
10,880 KB
testcase_15 AC 313 ms
10,752 KB
testcase_16 AC 327 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n, a):
    result = []
    i = 1
    while i*i <= n:
        if n % i == 0:
            if i >= a:
                result.append(i)
            if i*i < n and n >= a*i:
                result.append(n//i)
        i += 1
    return sorted(result)


def solve(a, b):
    d = divisors(b-a, a)
    if d:
        return d[0]-a
    else:
        return -1


for t in range(int(input())):
    print(solve(*[int(a) for a in input().split()]))
0