結果

問題 No.2767 Add to Divide
ユーザー aa
提出日時 2024-05-31 22:08:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 610 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 137,472 KB
最終ジャッジ日時 2024-12-20 23:40:40
合計ジャッジ時間 11,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,944 KB
testcase_01 TLE -
testcase_02 AC 43 ms
57,728 KB
testcase_03 AC 93 ms
137,472 KB
testcase_04 AC 46 ms
58,624 KB
testcase_05 AC 67 ms
59,648 KB
testcase_06 AC 67 ms
60,288 KB
testcase_07 AC 68 ms
58,880 KB
testcase_08 AC 84 ms
59,136 KB
testcase_09 AC 80 ms
58,752 KB
testcase_10 AC 86 ms
59,520 KB
testcase_11 AC 219 ms
75,704 KB
testcase_12 AC 205 ms
75,472 KB
testcase_13 AC 172 ms
75,520 KB
testcase_14 AC 175 ms
75,820 KB
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def enumerate_divisors(n):
    divisors = set()
    for i in range(1, int(n**0.5) + 1):
        if n % i == 0:
            divisors.add(i)
            if i != n // i:
                divisors.add(n // i)
    return divisors
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
        x=b-a
        c=enumerate_divisors(x)
        for i in reversed(range(1,b//a)):
            if i in c:
                print((b-a*(i+1))//i)
                T=False
                break
        if T:
            print(-1)
0