-Code
from math import lcm
res = 1e9
for _ in range(int(input())):
y, c1, c2 = map(int, input().split())
res = min(y + lcm(c1, c2), res)
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 11809번 YODA (0) | 2024.08.12 |
---|---|
[백준/파이썬] 28062번 준석이의 사탕 사기 (0) | 2024.08.11 |
[백준/파이썬] 11434번 Ampelmännchen (0) | 2024.08.09 |
[백준/파이썬] 9253번 Negative People in Da House (0) | 2024.08.08 |
[백준/파이썬] 9253번 스페셜 저지 (0) | 2024.08.07 |