結果

問題 No.2767 Add to Divide
ユーザー june19312june19312
提出日時 2024-05-31 23:02:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 64,008 KB
最終ジャッジ日時 2024-05-31 23:02:32
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,452 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,156 KB
testcase_03 AC 45 ms
60,348 KB
testcase_04 AC 48 ms
61,100 KB
testcase_05 AC 51 ms
60,220 KB
testcase_06 AC 46 ms
60,924 KB
testcase_07 AC 44 ms
60,412 KB
testcase_08 AC 46 ms
60,604 KB
testcase_09 AC 46 ms
60,404 KB
testcase_10 AC 45 ms
60,608 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
#4394 993298361
for j in range(T):
    a,b = map(int,input().split())
    if b%a == 0:
        print(0)
        continue
    elif b//a < 2:
        print(-1)
        continue

    for k in range(min(b//a,10000),1,-1):
        ok,ng = 0,1000000000

        while abs(ok-ng) > 1:
            mid = abs((ok+ng)//2)
            if (b+mid)//(a+mid) < k:
                ng = mid
            else:
                ok = mid

        if (b+ok)%(a+ok) == 0:
            print(ok)
            break
0