https://www.acmicpc.net/problem/10707
#include <iostream>
using namespace std;
int main() {
int a, b, c, d, p;
cin >> a >> b >> c >> d >> p;
int x, y;
x = a * p;
if (p > c)
y = (p - c)*d + b;
else
y = b;
if (x < y)
cout << x;
else
cout << y;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 8979번 : 올림픽 (0) | 2019.02.26 |
---|---|
[C++] 백준 5532번 : 방학 숙제 (0) | 2019.02.26 |
[C++] 백준 2822번 : 점수 계산 (0) | 2019.02.26 |
[C++] 백준 5597번 : 과제 안 내신 분..? (0) | 2019.02.26 |
[C++] 백준 5063번 : TGN (0) | 2019.02.26 |