結果

問題 No.816 Beautiful tuples
ユーザー convexineqconvexineq
提出日時 2021-03-23 05:13:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 416 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-05-03 17:26:14
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 37 ms
52,096 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 38 ms
57,728 KB
testcase_08 AC 39 ms
57,216 KB
testcase_09 AC 37 ms
57,216 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 39 ms
56,704 KB
testcase_13 AC 37 ms
57,344 KB
testcase_14 AC 35 ms
51,840 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!=c!=a:
        print(d)
        exit()
print(-1)
0