結果

問題 No.816 Beautiful tuples
ユーザー yansi819yansi819
提出日時 2024-05-12 18:44:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,500 ms
コード長 389 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 58,492 KB
最終ジャッジ日時 2024-12-20 09:12:21
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,988 KB
testcase_01 AC 40 ms
52,264 KB
testcase_02 AC 43 ms
58,356 KB
testcase_03 AC 42 ms
57,056 KB
testcase_04 AC 44 ms
58,492 KB
testcase_05 AC 43 ms
58,256 KB
testcase_06 AC 43 ms
57,724 KB
testcase_07 AC 44 ms
58,428 KB
testcase_08 AC 43 ms
57,660 KB
testcase_09 AC 44 ms
57,628 KB
testcase_10 AC 47 ms
57,932 KB
testcase_11 AC 47 ms
58,260 KB
testcase_12 AC 45 ms
56,908 KB
testcase_13 AC 46 ms
57,176 KB
testcase_14 AC 44 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(N):
    res = []
    for i in range(1, int(N ** 0.5) + 1):
        if N % i == 0:
            res.append(i)
            if i * i != N:
                res.append(N // i)
    res.sort()
    return res

A, B = map(int, input().split())
D = divisors(A + B)
for C in D:
    if (A + C) % B == 0 and (B + C) % A == 0 and A != C and B != C:
        print(C)
        exit()
print(-1)
0