結果
問題 | No.816 Beautiful tuples |
ユーザー |
|
提出日時 | 2021-06-15 00:28:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 1,500 ms |
コード長 | 573 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 57,856 KB |
最終ジャッジ日時 | 2024-12-25 12:13:47 |
合計ジャッジ時間 | 1,587 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
ソースコード
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 and a!=v and b!=v: print(v) break else: print(-1)