Recent Posts
Notice
No Rules Rules
카드 뽑기 (feat. 백준, 16204번) 본문
728x90
반응형
카드 뽑기
https://www.acmicpc.net/problem/16204
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, M, K;
cin >> N >> M >> K;
register int front_O = M, front_X = N - M;
register int back_O = K, back_X = N - K;
cout << min(front_O, back_O) + min(front_X, back_X);
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
주사위 게임 (feat. 백준, 2476번) (0) | 2023.04.13 |
---|---|
카드 역배치 (feat. 백준, 10804번) (0) | 2023.04.12 |
Networking (feat. 백준, 3803번) (0) | 2023.04.10 |
회사에 있는 사람 (feat. 백준, 7785번) (0) | 2023.04.10 |
점수계산 (feat. 백준, 2506번) (0) | 2023.04.07 |
Comments