No Rules Rules

카드 뽑기 (feat. 백준, 16204번) 본문

생활/코테

카드 뽑기 (feat. 백준, 16204번)

개발하는 완두콩 2023. 4. 12. 12:18
728x90
반응형

카드 뽑기
https://www.acmicpc.net/problem/16204

 

16204번: 카드 뽑기

첫째 줄에 N, M, K가 주어진다. (1 ≤ N ≤ 1,000,000, 0 ≤ M, K ≤ N)

www.acmicpc.net

 

// 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
반응형
Comments