-
[프로그래머스] 위클리 챌린지 1주차ALGORITHM/PROGRAMMERS 2021. 8. 9. 22:04
https://programmers.co.kr/learn/courses/30/lessons/82612
2021-08
123456class Solution {public long solution(int price, int money, int count) {long answer = (long)money - ((count*(price + ((long)price*count)))/2);return answer < 0 ? answer*-1 : 0;}}cs 'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 단어 변환 (0) 2021.08.11 [프로그래머스] 위클리 챌린지 2주차 (0) 2021.08.09 [프로그래머스] 예상 대진표 (0) 2021.08.07 [프로그래머스] 위장 (0) 2021.08.07 [프로그래머스] 쿼드압축 후 개수 세기 (월간 코드 챌린지 시즌1) (0) 2021.08.07