結果

問題 No.2767 Add to Divide
ユーザー Abhishek ChoudharyAbhishek Choudhary
提出日時 2024-05-31 22:54:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-12-21 00:59:59
合計ジャッジ時間 2,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,880 KB
testcase_01 AC 60 ms
61,568 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 108 ms
60,800 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 103 ms
59,904 KB
testcase_06 AC 101 ms
61,568 KB
testcase_07 AC 105 ms
59,520 KB
testcase_08 AC 107 ms
59,776 KB
testcase_09 AC 107 ms
60,032 KB
testcase_10 AC 109 ms
59,776 KB
testcase_11 AC 147 ms
61,952 KB
testcase_12 AC 142 ms
62,592 KB
testcase_13 AC 143 ms
61,696 KB
testcase_14 AC 135 ms
61,568 KB
testcase_15 AC 144 ms
61,568 KB
testcase_16 AC 139 ms
62,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for _ in range(t):
    a, b = map(int, input().split())
    if a > b:
        print(-1)
        continue
    res = float('inf')
    x = 0
    while x * x <= b:
        if (b + x) % (a + x) == 0:
            res = min(res, x)
        x += 1
    k = 2
    while b - k * a >= 0 and (k - 1) * (k - 1) <= b:
        if (b - k * a) % (k - 1) == 0:
            res = min(res, (b - k * a) // (k - 1))
        k += 1
    if res == float('inf'):
        res = -1
    print(res)
0