알고리즘/BOJ

백준 10707번 수도요금

꾸준함. 2018. 11. 1. 22:43

문제 링크입니다: https://www.acmicpc.net/problem/10707


간단한 구현 문제였습니다.


#include <iostream>

#include <algorithm>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        int A, B, C, D, P;

        cin >> A >> B >> C >> D >> P;

 

        int temp1 = A * P;

        int temp2 = B;

        if (P > C)

                 temp2 += (P - C)*D;

 

        cout << min(temp1, temp2) << "\n";

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 5532번 방학 숙제  (0) 2018.11.01
백준 12790번 Mini Fantasy War  (0) 2018.11.01
백준 2138번 전구와 스위치  (0) 2018.11.01
백준 1411번 비슷한 단어  (0) 2018.10.30
백준 10545번 뚜기뚜기메뚜기  (0) 2018.10.30