티스토리 뷰
문제출처 - https://www.acmicpc.net/problem/5543
풀이1
burger = []
drink = []
for i in range(3):
temp = int(input())
burger.append(temp)
for i in range(2):
temp = int(input())
drink.append(temp)
cheap = 10000
for i in range(3):
for j in range(2):
if burger[i] + drink[j] - 50 < cheap:
cheap = burger[i] + drink[j] - 50
print(cheap)
풀이2
burger = []
drink = []
for i in range(3):
temp = int(input())
burger.append(temp)
for i in range(2):
temp = int(input())
drink.append(temp)
cheap = min(burger) + min(drink) - 50
print(cheap)
채점결과 풀이1과 풀이2의 메모리와 시간은 동일하다.
'ALGORITHM > 백준' 카테고리의 다른 글
[Python]백준 - 상수(2908번) (0) | 2020.03.09 |
---|---|
[Python]백준 - 단어 공부(1157번) (0) | 2020.03.09 |
[Python]백준 - 윷놀이(2490번) (0) | 2020.03.09 |
[Python]백준 - 알람 시계(2884번) (0) | 2020.03.09 |
[Python]백준 - 평균 점수(10039번) (0) | 2020.03.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 백준
- 문자열처리
- 딕셔너리
- 괄호
- 재귀
- 정렬
- 문자열
- 2020 KAKAO BLIND RECRUITMENT
- left join
- 우선순위큐
- 코딩테스트
- SWExpert
- SW Expert
- 파이썬
- 스택
- 완전탐색
- combination
- Python
- programmers
- dictionary
- C++
- 해시
- hash
- 구현
- 프로그래머스
- 2019 Kakao Blind Recruitment
- 힙
- Permutation
- 순열
- BOJ
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함