[SWEA]수도 요금 경쟁

Posted by kyoungIn on May 7, 2019

수도 요금 경쟁

링크

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>

using namespace std;
int main(){
    
    int t;cin >> t;
    for(int T=1;T<=t;T++){
        int res,p,q,r,s,w;
        cin >> p>> q>> r>> s>> w;
        res= p*w;
        if(r<w)
            q+=(w-r)*s;
        res = res< q ? res : q;
        
        cout <<"#"<<T<<" "<<res<<endl;
    }
}