結果

問題 No.2767 Add to Divide
ユーザー aa
提出日時 2024-05-31 21:55:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 352 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 128,612 KB
最終ジャッジ日時 2024-12-20 23:17:08
合計ジャッジ時間 11,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
68,760 KB
testcase_01 TLE -
testcase_02 AC 40 ms
59,696 KB
testcase_03 AC 41 ms
128,612 KB
testcase_04 AC 44 ms
60,628 KB
testcase_05 AC 45 ms
58,892 KB
testcase_06 AC 46 ms
59,496 KB
testcase_07 AC 44 ms
53,080 KB
testcase_08 AC 43 ms
52,764 KB
testcase_09 AC 44 ms
52,836 KB
testcase_10 AC 46 ms
53,344 KB
testcase_11 AC 243 ms
74,888 KB
testcase_12 AC 225 ms
75,200 KB
testcase_13 AC 168 ms
74,992 KB
testcase_14 AC 185 ms
75,232 KB
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a,b=map(int,input().split())
    if b%a==0:
        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