結果

問題 No.816 Beautiful tuples
ユーザー tomarint2tomarint2
提出日時 2019-04-19 22:08:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,500 ms
コード長 473 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 59,496 KB
最終ジャッジ日時 2024-09-22 20:12:41
合計ジャッジ時間 1,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

# A+B=n*C
# B+C=m*A
# C+A=l*B
# 2 * (A+B+C) = n*C + m*A + l*B
def divisor(n):
    n2 = int((n**0.5)+1) + 1
    ret = set()
    for i in range(1,n2):
        if n%i==0:
            ret.add(i)
            ret.add(n//i)
    ret = list(ret)
    ret.sort()
    return ret

def solve():
    A,B=map(int,input().split())
    Cs=divisor(A+B)
    #print(Cs)
    for c in Cs:
        if (B+c)%A==0 and (c+A)%B==0 and A!=c and B!=c:
            return c
    return -1

print(solve())
0