Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- 자료구조 복습
- 파이썬
- 생활코딩
- 백준
- 숙명여자대학교 정보보안동아리
- siss
- PHP 웹페이지 만들기
- HTML
- lob
- 기계학습
- Javascript
- c
- c++
- BOJ
- CSS
- 풀이
- hackerrank
- WarGame
- The Loard of BOF
- hackctf
- Python
- 숙명여자대학교 정보보안 동아리
- C언어
- Sookmyung Information Security Study
- XSS Game
- SWEA
- 머신러닝
- BOJ Python
- 웹페이지 만들기
- 드림핵
Archives
- Today
- Total
혜랑's STORY
[HackerRank] Combo Meal 본문
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;
}
실행 결과는 다음과 같다.
'2021 SISS 21기 활동 > 2학기 C' 카테고리의 다른 글
[HackerRank] The Full Counting Sort (0) | 2021.10.06 |
---|---|
[HackerRank] Correctness and the Loop Invariant (0) | 2021.10.06 |
[HackerRank] Electronics Shop (0) | 2021.10.01 |
[HackerRank] Closet Numbers (0) | 2021.09.24 |
[HackerRank] Equal Stacks (0) | 2021.09.24 |