結果

問題 No.816 Beautiful tuples
ユーザー shotoyooshotoyoo
提出日時 2021-06-15 00:25:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-06-07 09:56:20
合計ジャッジ時間 1,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 40 ms
58,112 KB
testcase_03 WA -
testcase_04 AC 40 ms
57,472 KB
testcase_05 AC 40 ms
57,188 KB
testcase_06 AC 40 ms
57,728 KB
testcase_07 AC 41 ms
57,984 KB
testcase_08 AC 41 ms
57,472 KB
testcase_09 AC 40 ms
57,728 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
57,216 KB
testcase_13 AC 41 ms
57,088 KB
testcase_14 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

### 約数列挙
def fs(n):
    s = set()
    for i in range(1,int(n**0.5)+2):
        if n%i==0:
            s.add(i)
            s.add(n//i)
    l = sorted(list(s))
    return l

a,b = list(map(int, input().split()))
l = fs(a+b)
for v in sorted(l):
    if (a+v)%b==(b+v)%a==0:
        print(v)
        break
else:
    print(-1)
0