티스토리 뷰

1284. 수도 요금 경쟁

swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV189xUaI8UCFAZN&categoryId=AV189xUaI8UCFAZN&categoryType=CODE&problemTitle=&orderBy=INQUERY_COUNT&selectCodeLang=ALL&select-1=2&pageSize=10&pageIndex=1

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

import java.util.Scanner;

// 210130
// 1284. 수도 요금 경쟁
public class SWEA1284 {

	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 A = W * P;
			int B;
			if (W <= R) B = Q;
			else B = Q + (W-R) * S;
			
			int res = (A<B ? A : B);
			// 출력
			System.out.println("#" + tc + " " + res);
		
		} // for

		sc.close();
	} // main
}

'코딩테스트 > SW Expert' 카테고리의 다른 글

[SWEA] 1989. 초심자의 회문 검사  (0) 2021.01.30
[SWEA] 2001. 파리 퇴치  (0) 2021.01.30
[SWEA] 1954. 달팽이 숫자  (0) 2021.01.30
[SWEA] 2007. 패턴 마디의 길이  (0) 2021.01.29
[SWEA] 1926. 간단한 369게임  (0) 2021.01.29
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
글 보관함