[swexpert] 1284. 수도 요금 경쟁 (java, D2)
728x90
반응형
package com.ssafy.edu;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
for (int tc = 1; tc <=t; tc++) {
int p=sc.nextInt();
int q=sc.nextInt();
int r=sc.nextInt();
int s=sc.nextInt();
int w=sc.nextInt();
int caseOne=w*p;
int caseTwo=q;
if(w>r){
caseTwo+=(w-r)*s;
}
System.out.printf("#%d %d\n",tc,caseOne<caseTwo?caseOne:caseTwo);
}
sc.close();
}
}
728x90
반응형
'swexpert' 카테고리의 다른 글
[swexpert] 1873. 상호의 배틀 필드 (java) (0) | 2021.02.03 |
---|---|
swexpert 1289. 원재의 메모리 복구하기 (java) (0) | 2021.02.01 |
[swexpert] 1928. Base 64 Decoder (D2, java) (0) | 2021.01.18 |
[swexpert] 1954. 달팽이 숫자 (java, D2) (0) | 2021.01.18 |
[swexpert] 2019. 더블더블 (java, D1) (0) | 2021.01.15 |
TAGS.