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 | 31 |
Tags
- XSS Game
- 생활코딩
- 파이썬
- 풀이
- BOJ Python
- 백준
- 웹페이지 만들기
- 기계학습
- c++
- hackerrank
- PHP 웹페이지 만들기
- 숙명여자대학교 정보보안 동아리
- c
- 드림핵
- siss
- WarGame
- Python
- C언어
- SWEA
- hackctf
- 머신러닝
- BOJ
- CSS
- 숙명여자대학교 정보보안동아리
- lob
- HTML
- The Loard of BOF
- 자료구조 복습
- Javascript
- Sookmyung Information Security Study
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 |