[백준] #5046 전국 대학생 프로그래밍 대회 동아리 연합 python
2023. 5. 10. 15:57
https://www.acmicpc.net/problem/5046
📕 설명 📕
python의 list를 여러 개 사용하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N, B, H, W = map(int, input().split())
cost = []
hotel = []
total = []
for i in range(H):
cost.append(int(input()))
hotel.append(list(map(int, input().split())))
for i in range(H):
for j in hotel[i]:
if j > N:
total.append(N * cost[i])
if len(total) == 0:
print('stay home')
elif min(total) > B:
print('stay home')
else:
print(min(total))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1286 부분 직사각형 python (0) | 2023.05.12 |
---|---|
[백준] #1141 접두사 python (0) | 2023.05.11 |
[백준] #2669 직사각형 네개의 합집합의 면적 구하기 python (0) | 2023.05.09 |
[백준] #1535 안녕 python (0) | 2023.05.08 |
[백준] #1138 한 줄로 서기 python (0) | 2023.05.05 |