結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー ckawatak
提出日時 2018-07-28 13:55:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-05 18:24:13
合計ジャッジ時間 3,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 22 WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

t1 = int(input())
t2 = int(input())
t3 = int(input())

def gcd(a, b):
    if b == 0:
        return a
    return gcd(b, a % b)

def lcm(a, b):
    return (a * b) / gcd(a, b)
    
m = lcm(t1, lcm(t3, t2))

print('%d/1' % m)
0