結果

問題 No.2767 Add to Divide
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 22:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 62,808 KB
最終ジャッジ日時 2024-06-09 22:56:40
合計ジャッジ時間 2,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,500 KB
testcase_01 AC 43 ms
58,368 KB
testcase_02 AC 38 ms
54,312 KB
testcase_03 AC 80 ms
62,808 KB
testcase_04 AC 34 ms
53,608 KB
testcase_05 AC 64 ms
61,132 KB
testcase_06 AC 67 ms
61,804 KB
testcase_07 AC 67 ms
60,596 KB
testcase_08 AC 73 ms
61,248 KB
testcase_09 AC 69 ms
60,500 KB
testcase_10 AC 78 ms
61,416 KB
testcase_11 AC 73 ms
60,580 KB
testcase_12 AC 72 ms
61,648 KB
testcase_13 AC 73 ms
59,912 KB
testcase_14 AC 72 ms
60,632 KB
testcase_15 AC 66 ms
59,900 KB
testcase_16 AC 69 ms
60,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b = map(int, input().split())
    d = b - a
    if d == 0:
        print(0)
        continue
    factors = []
    for i in range(1, int(d**0.5) + 1):
        if d % i == 0:
            factors.append(i)
            factors.append(d // i)
    factors.sort()
    ans = -1
    for f in factors:
        if f >= a:
            ans = f - a
            break
    print(ans)
0