結果

問題 No.816 Beautiful tuples
ユーザー rlangevinrlangevin
提出日時 2023-01-03 17:06:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-05-05 07:32:33
合計ジャッジ時間 1,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 39 ms
57,216 KB
testcase_03 WA -
testcase_04 AC 40 ms
57,472 KB
testcase_05 AC 42 ms
56,960 KB
testcase_06 AC 41 ms
57,216 KB
testcase_07 AC 39 ms
57,216 KB
testcase_08 AC 38 ms
57,344 KB
testcase_09 AC 40 ms
57,088 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
57,088 KB
testcase_13 AC 38 ms
57,088 KB
testcase_14 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    if n <= 0:
        return []
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return list(S)

A, B = map(int, input().split())
inf = 10 ** 18
ans = inf
for d in div(A + B):
    if (A + d) % B == 0 and (B + d) % A == 0:
        ans = min(ans, d)
print(ans) if ans != inf else print(-1)
0