최대 1 분 소요

[프로그래머스] 부족한 금액 계산하기

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
package _1월_3주차;
 
import java.util.Scanner;
public class 프로그래머스_손수경_정답 {
 
    public static int solution(int fristPrice, int money, int count) {
        int sum = ((fristPrice + (fristPrice*count)) * (int)(Math.ceil(count/2)));
        int isEnough = sum - money;
        if (isEnough <= 0) {
            return 0;
        }
        else {
            return isEnough;
        }
    }
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int price = sc.nextInt();
        int money = sc.nextInt();
        int count = sc.nextInt();
        int result = solution(price, money, count);
        System.out.println(result);
    
    }
 
}
 
cs


solution이라는 함수를 만들었다. 함수내의 sum 이라는 변수는 놀이기구를 count만큼 타는데 드는 총 비용을 뜻한다. 이때, 등자수열의 합공식을 이용하여서 sum을 구했다. 그리고 isEnough 를 통해서 그 값이 음수거나 0일 경우는 부족한 금액이 없다는 의미이므로 0을 리턴하고, 양수인 경우는 그 만큼 금액이 부족하다는 것이므로 isEnough를 리턴했다.

댓글남기기