結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
52,576 KB
testcase_02 AC 43 ms
57,660 KB
testcase_03 WA -
testcase_04 AC 41 ms
57,640 KB
testcase_05 AC 42 ms
57,704 KB
testcase_06 AC 41 ms
57,464 KB
testcase_07 AC 42 ms
57,292 KB
testcase_08 AC 42 ms
58,004 KB
testcase_09 AC 41 ms
58,784 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
57,684 KB
testcase_13 AC 42 ms
58,892 KB
testcase_14 AC 38 ms
53,328 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