結果

問題 No.1423 Triangle of Multiples
ユーザー O2MTO2MT
提出日時 2021-06-08 01:28:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 77,188 KB
最終ジャッジ日時 2024-11-25 07:36:28
合計ジャッジ時間 1,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,556 KB
testcase_01 AC 37 ms
52,248 KB
testcase_02 AC 251 ms
77,188 KB
testcase_03 AC 171 ms
77,008 KB
testcase_04 AC 174 ms
76,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(x, y):
    if y == 0:
        return x
    else:
        return gcd(y,x%y)
def lcm(x, y):
    return (x * y) // gcd(x, y)

T = int(input())
for _ in range(T):
  a,b,c = map(int,input().split())
  num = lcm(lcm(a,b),c)
  print(num,num,num)
0