-
[λ°±μ€] 1145 μ μ΄λ λλΆλΆμ λ°°μ with PythonPS 2022. 3. 29. 16:56728x90λ°μν
π BOJ 1145 μ μ΄λ λλΆλΆμ λ°°μ
π‘ 쑰건
λ€μ― κ°μ μμ°μκ° μλ€. μ΄ μμ μ μ΄λ λλΆλΆμ λ°°μλ μμ μ μ€ μ μ΄λ μΈ κ°λ‘ λλμ΄ μ§λ κ°μ₯ μμ μμ°μμ΄λ€.
μλ‘ λ€λ₯Έ λ€μ― κ°μ μμ°μκ° μ£Όμ΄μ§ λ, μ μ΄λ λλΆλΆμ λ°°μλ₯Ό μΆλ ₯νλ λ¬Έμ
100λ³΄λ€ μκ±°λ κ°μ μμ°μμ΄κ³ , μλ‘ λ€λ₯Έ μμ΄λ€.
λΈλ£¨νΈν¬μ€ μκ³ λ¦¬μ¦ μ νμ λ¬Έμ
π₯ μμ€ μ½λ
from sys import stdin from math import lcm arr = list(map(int, stdin.readline().split())) res = int(1e9) for i in range(5): for j in range(i + 1, 5): for k in range(j + 1, 5): res = min(res, lcm(arr[i], arr[j], arr[k])) print(res)
π μμ λ° μ€νκ²°κ³Ό
μμ
1 2 3 4 5
μ€νκ²°κ³Ό
4
β¨οΈ λ¬Έμ νμ΄
math λΌμ΄λΈλ¬λ¦¬μ lcm ν¨μλ₯Ό μ¬μ©νμ¬ λ¬Έμ λ₯Ό νμλ€.
5κ°μ μ«μ μ€ 3κ°λ₯Ό λ½μ μ΅μ곡배μλ₯Ό κ΅¬ν΄ μΆλ ₯νλ©΄ λλ€.
math λΌμ΄λΈλ¬λ¦¬μ lcm ν¨μλ python 3.9 λ²μ λΆν° μ¬μ©μ΄ κ°λ₯νλ€.
πΎ λλμ
λ°μν'PS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[λ°±μ€] 2012 λ±μ 맀기기 with Python (0) 2022.03.31 [λ°±μ€] 1343 ν΄λ¦¬μ€λ―Έλ Έ with Python (0) 2022.03.29 [λ°±μ€] 1038 κ°μνλ μ with Python (0) 2022.03.23 [λ°±μ€] 12761 λλ€λ¦¬ with Python (0) 2022.03.23 [λ°±μ€] 11104 Fridge of Your Dreams with Python (0) 2022.03.22