Dev.baelanche

[백준 2875] 대회 or 인턴 본문

Data Structure & Algorithm/PS - JAVA

[백준 2875] 대회 or 인턴

baelanche 2019. 5. 11. 20:05
반응형

 

 

2 : 1 의 페어로 나가야 하므로

n/2 와 m 을 비교하여 큰쪽에서 인턴쉽에 나가게 한다.

출력할때는 n/2 와 m 중 작은쪽을 출력해주면 되겠다.

 

 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		int m = sc.nextInt();
		int k = sc.nextInt();
		
		for(int i=k; i>0; i--) {
			if(n/2 >= m) n--;
			else m--;
		}
		
		System.out.println(n/2 < m ? n/2 : m);
	}
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 10994] 별 찍기 - 19  (0) 2019.05.13
[백준 1120] 문자열  (0) 2019.05.11
[백준 1654] 랜선 자르기  (0) 2019.05.10
[백준 2512] 예산  (0) 2019.05.10
[백준 2805] 나무 자르기  (0) 2019.05.10
Comments