結果

問題 No.2767 Add to Divide
ユーザー ShirotsumeShirotsume
提出日時 2024-05-31 21:56:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,109 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 64,316 KB
最終ジャッジ日時 2024-05-31 21:56:50
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,756 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 96 ms
64,316 KB
testcase_04 AC 43 ms
56,356 KB
testcase_05 AC 65 ms
61,888 KB
testcase_06 WA -
testcase_07 AC 70 ms
61,868 KB
testcase_08 AC 86 ms
61,704 KB
testcase_09 WA -
testcase_10 AC 82 ms
63,104 KB
testcase_11 AC 84 ms
62,452 KB
testcase_12 AC 82 ms
62,496 KB
testcase_13 AC 83 ms
62,208 KB
testcase_14 AC 89 ms
63,636 KB
testcase_15 AC 83 ms
62,960 KB
testcase_16 AC 83 ms
62,888 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)
    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