본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 22341번 사각형 면적

by 현장 2024. 10. 24.

-Code

n, c = map(int, input().split())
h, w = n, n

for _ in range(c):
    x, y = map(int, input().split())

    if x >= w or y >= h:
        continue

    if h * x >= w * y: w = x
    else: h = y

print(h * w)