結果

問題 No.816 Beautiful tuples
ユーザー H20H20
提出日時 2021-01-28 16:09:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,500 ms
コード長 463 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 58,932 KB
最終ジャッジ日時 2024-06-26 00:18:03
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,220 KB
testcase_01 AC 39 ms
52,740 KB
testcase_02 AC 45 ms
58,572 KB
testcase_03 AC 42 ms
57,984 KB
testcase_04 AC 42 ms
57,920 KB
testcase_05 AC 42 ms
58,524 KB
testcase_06 AC 40 ms
58,588 KB
testcase_07 AC 41 ms
57,536 KB
testcase_08 AC 43 ms
57,260 KB
testcase_09 AC 41 ms
58,392 KB
testcase_10 AC 42 ms
58,232 KB
testcase_11 AC 42 ms
58,932 KB
testcase_12 AC 41 ms
57,000 KB
testcase_13 AC 42 ms
58,236 KB
testcase_14 AC 38 ms
52,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
A,B = map(int,input().split())
CD = make_divisors(A+B)
for C in CD:
    if not A==C and not B==C and (A+C)%B==0 and (B+C)%A==0:
        print(C)
        exit()

print(-1)
0