結果

問題 No.816 Beautiful tuples
ユーザー tails1434tails1434
提出日時 2020-01-07 21:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,500 ms
コード長 543 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-05-02 11:44:41
合計ジャッジ時間 1,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 46 ms
57,344 KB
testcase_03 AC 35 ms
57,728 KB
testcase_04 AC 35 ms
57,216 KB
testcase_05 AC 34 ms
57,472 KB
testcase_06 AC 35 ms
57,216 KB
testcase_07 AC 36 ms
57,728 KB
testcase_08 AC 36 ms
57,216 KB
testcase_09 AC 35 ms
57,728 KB
testcase_10 AC 35 ms
57,728 KB
testcase_11 AC 36 ms
57,600 KB
testcase_12 AC 36 ms
57,728 KB
testcase_13 AC 35 ms
57,600 KB
testcase_14 AC 33 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(n):
    ass = []
    for i in range(1,int(n**0.5)+1):
        if n%i == 0:
            ass.append(i)
            if i**2 == n:
                continue
            ass.append(n//i)
    return ass

def main():
    A, B = map(int, input().split())
    C_cand = divisor(A+B)
    sort_C = sorted(C_cand)
    for C in sort_C:
        if C in [A,B]:
            continue
        if (B + C) % A == 0 and (A + C) % B == 0 and (A + B) % C == 0:
            print(C)
            exit()

    print(-1)



if __name__ == "__main__":
    main()
0