結果

問題 No.816 Beautiful tuples
ユーザー 👑 KazunKazun
提出日時 2020-10-27 04:27:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 59,584 KB
最終ジャッジ日時 2024-07-21 21:50:02
合計ジャッジ時間 1,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#約数全部
def Divisors(N):
    N=abs(N)
    L,U=[],[]
    k=1
    while k*k <=N:
        if N%k== 0:
            L.append(k)
            if k!=N//k:
                U.append(N//k)
        k+=1
    return L+U[::-1]
#================================================
A,B=map(int,input().split())
D=Divisors(A+B)

C=-1
for c in D[::-1]:
    if (A+c)%B==(B+c)%A==0:
        C=c
print(C)
0