結果

問題 No.816 Beautiful tuples
ユーザー maspy
提出日時 2022-04-27 23:47:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,500 ms
コード長 284 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-28 07:50:36
合計ジャッジ時間 1,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from math import gcd

A,B = map(int,read().split())

g = gcd(A,B)
a = A//g
b = B//g

c = 6 - a - b

if sorted((a,b,c)) == [1,2,3]:
    print(c * g)
else:
    print(-1)
0