문제
https://www.acmicpc.net/problem/5543
소스코드
#include <iostream>
using namespace std;
int main(void) {
int b1, b2, b3, d1, d2;
cin >> b1 >> b2 >> b3 >> d1 >> d2;
int cheap_b, cheap_d;
b1 > b2 ? cheap_b = b2 : cheap_b = b1;
if (cheap_b > b3) cheap_b = b3;
d1 > d2 ? cheap_d = d2 : cheap_d = d1;
cout << cheap_b + cheap_d - 50 << endl;
}
설명
algorithm 라이브러리를 사용하려다가 비교할게 3개, 2개여서 조건문으로 풀었다.
'개인 공부 > 코딩테스트' 카테고리의 다른 글
[C++] 백준 1002번 터렛 :: seoftware (0) | 2020.03.06 |
---|---|
[C++] 백준 2675번 문자열 반복 :: seoftware (0) | 2020.03.06 |
[C++] 백준 2869번 달팽이는 올라가고 싶다 :: seoftware (0) | 2020.03.06 |
[C++][구현] 백준 5585번 거스름돈 :: seoftware (0) | 2020.03.04 |
[C++] 백준 1712번 손익분기점 :: seoftware (0) | 2020.03.03 |
댓글