-Code
m, h = map(int, input().split())
res = 0
for _ in range(int(input())):
c, b = map(int, input().split())
res += c * m if c * m > b * h else b * h
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30310번 Finding Forks (0) | 2024.02.25 |
---|---|
[백준/파이썬] 24296번 ЛИНИЯ (0) | 2024.02.24 |
[백준/파이썬] 24313번 알고리즘 수업 - 점근적 표기 1 (0) | 2024.02.22 |
[백준/파이썬] 11520번 And Then There Was 5 (0) | 2024.02.21 |
[백준/파이썬] 31428번 엘리스 트랙 매칭 (0) | 2024.02.20 |