Programmers - 부족한 금액 계산하기

문제 링크

screenshot

Java 풀이

class Solution {
    public long solution(int price, int money, int count) {
        long money2 = Long.valueOf(money);
        for(int index = 1; index <= count; index++){
            money2 -= price * index;
        }
        return money2 < 0 ? money2 * -1 : 0;
    }
}

Java 풀이

function solution(price, money, count) {
    for(var index = 1; index <= count; index = index +1){
        money -= price * index;
    }
    return money < 0 ? money * -1 : 0;
}