結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
59,952 KB
testcase_01 AC 56 ms
58,388 KB
testcase_02 AC 94 ms
57,984 KB
testcase_03 AC 245 ms
59,884 KB
testcase_04 AC 46 ms
52,884 KB
testcase_05 AC 252 ms
59,748 KB
testcase_06 AC 243 ms
58,908 KB
testcase_07 AC 253 ms
59,144 KB
testcase_08 AC 252 ms
59,280 KB
testcase_09 AC 249 ms
59,052 KB
testcase_10 AC 254 ms
60,364 KB
testcase_11 AC 216 ms
59,960 KB
testcase_12 AC 183 ms
60,088 KB
testcase_13 AC 210 ms
60,924 KB
testcase_14 AC 217 ms
60,256 KB
testcase_15 AC 137 ms
59,436 KB
testcase_16 AC 129 ms
58,780 KB
権限があれば一括ダウンロードができます

ソースコード

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