結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,220 KB
testcase_01 AC 35 ms
52,084 KB
testcase_02 AC 37 ms
58,168 KB
testcase_03 AC 37 ms
57,380 KB
testcase_04 AC 37 ms
57,800 KB
testcase_05 AC 38 ms
57,988 KB
testcase_06 AC 38 ms
57,312 KB
testcase_07 AC 38 ms
58,420 KB
testcase_08 AC 36 ms
57,372 KB
testcase_09 AC 36 ms
58,468 KB
testcase_10 AC 37 ms
57,648 KB
testcase_11 AC 41 ms
58,576 KB
testcase_12 AC 37 ms
57,956 KB
testcase_13 AC 39 ms
58,380 KB
testcase_14 AC 35 ms
52,188 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