본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#351 백준 파이썬 [2875] 대회 or 인턴

https://www.acmicpc.net/problem/2875

 

PYTHON CODE

N, M, K = map(int, input().split())

while K:
    if N >= 2 * M:
        N -= 1
    else:
        M -= 1
    K -= 1
        
print(min(N//2, M))