結果

問題 No.2767 Add to Divide
ユーザー ShirotsumeShirotsume
提出日時 2024-05-31 21:57:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 64,828 KB
最終ジャッジ日時 2024-05-31 21:57:38
合計ジャッジ時間 2,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,120 KB
testcase_01 AC 50 ms
61,388 KB
testcase_02 AC 45 ms
57,108 KB
testcase_03 AC 99 ms
64,828 KB
testcase_04 AC 45 ms
56,420 KB
testcase_05 AC 72 ms
61,828 KB
testcase_06 AC 70 ms
63,108 KB
testcase_07 AC 70 ms
62,072 KB
testcase_08 AC 88 ms
62,232 KB
testcase_09 AC 87 ms
63,244 KB
testcase_10 AC 89 ms
63,812 KB
testcase_11 AC 90 ms
62,816 KB
testcase_12 AC 87 ms
63,208 KB
testcase_13 AC 88 ms
62,572 KB
testcase_14 AC 91 ms
64,008 KB
testcase_15 AC 89 ms
62,672 KB
testcase_16 AC 88 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

def solve():
    a, b = mi()
    #あるmが存在して,m(a + x) = b + xを満たすxが存在するか
    #ma + mx = b + x
    #mx - x = b - ma
    #x(m - 1) = b - ma
    #x = (b - ma) / (m - 1)
    #x = (b - a - (m - 1)a) / (m - 1)
    #x = (b - a) / (m - 1) - a
    ans = inf
    if a == b:
        print(0)
        return
    if b - 2 * a >= 0:
        k = b - a
        for v in range(1, k + 1):
            if v * v > k:
                break
            if k % v == 0:
                x = k // v
                if x > 0 and k // x - a >= 0 and b - x * a >= 0:
                    ans = min(ans, k // x - a)
                x = v
                if x > 0 and k // x - a >= 0 and b - x * a >= 0:
                    ans = min(ans, k // x - a)
        print(ans if ans < inf else -1)   
    else:
        print(-1)
    
    
    
    
for _ in range(ii()):
    solve()
0