結果

問題 No.2767 Add to Divide
ユーザー aa
提出日時 2024-05-31 22:19:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,560 KB
最終ジャッジ日時 2024-05-31 22:19:05
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,932 KB
testcase_01 WA -
testcase_02 AC 45 ms
58,780 KB
testcase_03 AC 87 ms
62,792 KB
testcase_04 WA -
testcase_05 AC 62 ms
61,004 KB
testcase_06 AC 62 ms
61,136 KB
testcase_07 AC 61 ms
59,292 KB
testcase_08 AC 76 ms
60,108 KB
testcase_09 AC 103 ms
60,744 KB
testcase_10 AC 75 ms
59,700 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        s=0
        if a<=10000:
            for i in range(10000):
                a+=1 
                b+=1 
                s+=1
                if b%a==0:
                    print(s)
                    T=False
        if T:
            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+s)
                    T=False
                    break
        if T:
            print(-1)
0