-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 22421번 Koto Municipal Subway (0) | 2024.10.26 |
---|---|
[백준/파이썬] 9971번 The Hardest Problem Ever (0) | 2024.10.25 |
[백준/파이썬] 27566번 Blueberry Waffle (3) | 2024.10.23 |
[백준/파이썬] 26564번 Poker Hand (0) | 2024.10.22 |
[백준/파이썬] 27627번 Splitology (1) | 2024.10.21 |