結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,776 KB
testcase_01 AC 58 ms
63,192 KB
testcase_02 AC 40 ms
52,760 KB
testcase_03 AC 136 ms
61,856 KB
testcase_04 AC 41 ms
54,184 KB
testcase_05 AC 94 ms
61,428 KB
testcase_06 AC 99 ms
61,300 KB
testcase_07 AC 93 ms
60,028 KB
testcase_08 AC 96 ms
60,948 KB
testcase_09 AC 98 ms
60,364 KB
testcase_10 AC 97 ms
59,652 KB
testcase_11 AC 134 ms
62,568 KB
testcase_12 AC 131 ms
63,044 KB
testcase_13 AC 129 ms
62,360 KB
testcase_14 AC 154 ms
62,480 KB
testcase_15 AC 129 ms
63,444 KB
testcase_16 AC 132 ms
63,136 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