結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,432 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 101 ms
64,540 KB
testcase_04 AC 46 ms
56,640 KB
testcase_05 AC 68 ms
62,100 KB
testcase_06 WA -
testcase_07 AC 71 ms
62,576 KB
testcase_08 AC 89 ms
62,072 KB
testcase_09 WA -
testcase_10 AC 88 ms
62,268 KB
testcase_11 AC 89 ms
62,912 KB
testcase_12 AC 90 ms
62,468 KB
testcase_13 AC 89 ms
63,220 KB
testcase_14 AC 89 ms
63,576 KB
testcase_15 AC 88 ms
63,360 KB
testcase_16 AC 88 ms
63,596 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 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