공부 서랍장/알고리즘 공부

[프로그래머스] 멀쩡한 사각형 python

만땅이 2022. 9. 6. 12:23

# 문제: https://school.programmers.co.kr/learn/courses/30/lessons/62048

import math

def solution(w,h):
    total = w*h
    cal = (w+h-math.gcd(w,h))
    answer = total - cal
    return answer 

반응형