250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 가상환경
- BOJ
- Python
- 실버
- 1101
- 파이썬
- n과 m
- 경사하강법
- 신경망 학습
- 재귀
- 개발환경
- 9020
- 백준
- 4948
- 기계학습
- end to end
- 1002
- 밑바닥부터 시작하는 딥러닝
- Mac
- 손실함수
- 그리디 알고리즘
- N-Queen
- streamlit
- 백트래킹
- pyenv
- 15649
- 파이싼
- 설정
Archives
- Today
- Total
파이톨치
[백준] 1049 본문
728x90
n, m = map(int, input().split())
s = []
k = []
for i in range(m):
a, b = map(int, input().split())
s.append(a)
k.append(b)
best1 = min(s)
best2 = min(k)
best = min([best1, best2*6])
cost = 0
while n >= 6:
cost += best
n -= 6
if best < n*best2:
cost += best
else:
cost += n*best2
print(cost)
728x90