結果

問題 No.2767 Add to Divide
ユーザー aa
提出日時 2024-05-31 21:45:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 350 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 81,908 KB
最終ジャッジ日時 2024-05-31 21:45:59
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
69,320 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a,b=map(int,input().split())
    if a==b:
        print(0)
    elif b//a==1:
        print(-1)
    else:
        T=True
        for i in reversed(range(2,b//a+1)):
            if (b-a*i)%(i-1)==0:
                print((b-a*i)//(i-1))
                T=False
                break
        if T:
            print(-1)
0