結果

問題 No.816 Beautiful tuples
ユーザー convexineqconvexineq
提出日時 2021-03-23 05:14:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,500 ms
コード長 416 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-05-03 17:26:50
合計ジャッジ時間 1,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
57,216 KB
testcase_03 AC 40 ms
57,600 KB
testcase_04 AC 41 ms
57,200 KB
testcase_05 AC 40 ms
57,472 KB
testcase_06 AC 40 ms
57,216 KB
testcase_07 AC 40 ms
57,600 KB
testcase_08 AC 41 ms
56,960 KB
testcase_09 AC 40 ms
56,704 KB
testcase_10 AC 40 ms
57,472 KB
testcase_11 AC 42 ms
57,600 KB
testcase_12 AC 42 ms
57,728 KB
testcase_13 AC 40 ms
57,472 KB
testcase_14 AC 38 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

a,b = map(int,input().split())
div = divisor_list(a+b)
for d in div:
    if (d+a)%b==0==(d+b)%a and a!=b!=d!=a:
        print(d)
        exit()
print(-1)
0