結果

問題 No.2767 Add to Divide
ユーザー H3PO4H3PO4
提出日時 2024-05-31 21:45:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 60,924 KB
最終ジャッジ日時 2024-12-20 23:00:31
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A: int, B: int):
    for x in range(10**5):
        if (B + x) % (A + x) == 0:
            return x
    for n in range(10**5, 1, -1):
        if B - n * A < 0:
            continue
        if (B - n * A) % (n - 1) == 0:
            return (B - n * A) // (n - 1)
    return -1


T = int(input())
for _ in range(T):
    print(solve(*map(int, input().split())))
0