▶ 코드
woman,man,k = map(int, input().split())
team = 0
while woman>=2 and man>=1 and woman+man>=k+3:
woman -=2
man -=1
team += 1
print(team)
# 정답 : https://yongku.tistory.com/entry/%EB%B0%B1%EC%A4%80-%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98-%EB%B0%B1%EC%A4%80-2875%EB%B2%88-%EB%8C%80%ED%9A%8C-or-%EC%9D%B8%ED%84%B4-%ED%8C%8C%EC%9D%B4%EC%8D%ACPython
'코테 기본개념 > 그리디' 카테고리의 다른 글
[백준 1946] 신입 사원 (0) | 2020.05.05 |
---|---|
[백준 10610] 30 (0) | 2020.05.05 |
[백준 1931] 회의실배정 (0) | 2020.05.03 |
[백준 5585] 거스름돈 (0) | 2020.05.03 |
[백준 11047] 동전 0 (0) | 2020.05.03 |
[백준 11399] ATM (0) | 2020.05.03 |