結果

問題 No.816 Beautiful tuples
ユーザー yansi819yansi819
提出日時 2024-05-12 18:40:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 59,332 KB
最終ジャッジ日時 2024-05-12 18:40:56
合計ジャッジ時間 1,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,392 KB
testcase_02 AC 37 ms
58,696 KB
testcase_03 WA -
testcase_04 AC 35 ms
57,640 KB
testcase_05 AC 37 ms
58,368 KB
testcase_06 AC 38 ms
59,268 KB
testcase_07 AC 37 ms
58,928 KB
testcase_08 AC 36 ms
58,192 KB
testcase_09 AC 37 ms
58,620 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
59,332 KB
testcase_13 AC 38 ms
58,836 KB
testcase_14 AC 35 ms
53,132 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:
        print(C)
        exit()
print(-1)
 
0