혜랑's STORY

[HackerRank] Combo Meal 본문

2021 SISS 21기 활동/2학기 C

[HackerRank] Combo Meal

hyerang0125 2021. 10. 1. 22:02
4주차 자유문제
Prepare > Mathematics > Algebra

 

풀이

문제에서 구해야하는 Fixed Profit 계산하는 수식은 다음과 같다.

  • bugger + fixed_profit = x
  • soda + fixed_profit = y
  • bugger + soda + fixed_profit = z

-> fixed_profit = (x + y) - z

따라서 처음 주어진 두 값의 합에서 마지막 값을 빼면 Fixed_Profit이다. 

전체적인 코드는 다음과 같다.

int profit(int b, int s, int c) {
    // Return the fixed profit.
    return (b + s) - c;
}

실행 결과는 다음과 같다.