結果

問題 No.2767 Add to Divide
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 22:55:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 62,352 KB
最終ジャッジ日時 2024-06-09 22:55:59
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,512 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 77 ms
62,352 KB
testcase_04 AC 36 ms
53,768 KB
testcase_05 AC 66 ms
60,432 KB
testcase_06 WA -
testcase_07 AC 65 ms
60,768 KB
testcase_08 AC 75 ms
62,204 KB
testcase_09 WA -
testcase_10 AC 75 ms
60,760 KB
testcase_11 AC 79 ms
61,392 KB
testcase_12 AC 73 ms
60,896 KB
testcase_13 AC 70 ms
59,936 KB
testcase_14 AC 74 ms
61,432 KB
testcase_15 AC 74 ms
61,200 KB
testcase_16 AC 71 ms
61,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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