"SWEA 1284 수도 요금 경쟁"의 두 판 사이의 차이

(새 문서: ==개요== ;SWEA 1940 가랏! RC카! {{SWEA 헤더}} {{SWEA 난이도 2-3}} |} ==C++== <source lang='cpp'> </source> ==Java== <source lang='java'> </source>)
 
12번째 줄: 12번째 줄:
==Java==
==Java==
<source lang='java'>
<source lang='java'>
import java.util.*;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int T, x;
        T = sc.nextInt();
       
        int P, Q, R, S, W;
        int A, B, charge;
        for(x=1; x<=T; x++) {
            P = sc.nextInt();
            Q = sc.nextInt();
            R = sc.nextInt();
            S = sc.nextInt();
            W = sc.nextInt();
            A = P * W;
            if( W <= R ) B = Q;
            else B = Q + ( W-R ) * S;
           
            charge = Math.min(A,B);
            System.out.format("#%d %d\n",x,charge);
        }
    }
}
</source>
</source>

2018년 12월 16일 (일) 21:11 판

1 개요

SWEA 1940 가랏! RC카!
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 2-3

2 C++

3 Java

import java.util.*;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int T, x;
        T = sc.nextInt();
        
        int P, Q, R, S, W;
        int A, B, charge;
        for(x=1; x<=T; x++) {
            P = sc.nextInt();
            Q = sc.nextInt();
            R = sc.nextInt();
            S = sc.nextInt();
            W = sc.nextInt();

            A = P * W;
            if( W <= R ) B = Q;
            else B = Q + ( W-R ) * S;
            
            charge = Math.min(A,B);
            System.out.format("#%d %d\n",x,charge);
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}