1 2 3 4 5 6 7 8 9 10 11 12 | class Solution { public long solution(long price, long money, int count) { long answer = 0; for(int i=1;i<=count;i++){ money -= price * i; } if(money < 0) answer = -money; return answer; } } | cs |
'Programmers > Level1' 카테고리의 다른 글
없는 숫자 더하기 (0) | 2021.10.10 |
---|---|
상호 평가 (0) | 2021.10.08 |
상위 n개 레코드 (0) | 2021.07.09 |
여러 기준으로 정렬하기 (0) | 2021.07.09 |
어린 동물 찾기 (0) | 2021.07.09 |