結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 288 ms
77,232 KB
testcase_03 AC 189 ms
76,780 KB
testcase_04 AC 189 ms
77,192 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