백준: 15059번 Hard choice (Python3)
Hard choice 성공다국어
1 초 | 1024 MB | 1306 | 1139 | 1082 | 87.540% |
문제
In long flights, airlines offer hot meals. Usually the flight attendants push carts containing the meals down along the aisles of the plane. When a cart reaches your row, you are asked right away: “Chicken, beef, or pasta?” You know your choices, but you have only a few seconds to choose and you don’t know how your choice will look like because your neighbor hasn’t opened his wrap yet. . .
The flight attendant in this flight decided to change the procedure. First she will ask all passengers what choice of meal they would prefer, and then she will check if the number of meals available in this flight for each choice are enough.
As an example, consider that the available number of meals for chicken, beef and pasta are respectively (80, 20, 40), while the number of passenger’s choices for chicken, beef and pasta are respectively (45, 23, 48). In this case, eleven people will surely not receive their selection for a meal, since three passengers who wanted beef and eight passengers who wanted pasta cannot be pleased.
Given the quantity of meals available for each choice and the number of meals requested for each choice, could you please help the flight attendant to determine how many passengers will surely not receive their selection for a meal?
입력
The first line contains three integers Ca, Ba and Pa (0 ≤ Ca, Ba, Pa ≤ 100), representing respectively the number of meals available for chicken, beef and pasta. The second line contains three integers Cr, Br and Pr (0 ≤ Cr, Br, Pr ≤ 100), indicating respectively the number of meals requested for chicken, beef and pasta.
출력
Output a single line with an integer representing the number of passengers that will surely not receive their selection for a meal.
예제 입력 1
80 20 40
45 23 48
예제 출력 1
11
예제 입력 2
0 0 0
100 100 100
예제 출력 2
300
예제 입력 3
41 42 43
41 42 43
예제 출력 3
0
답안
1
2
3
4
5
6
7
8
9
10
|
a, b, c = map(int, input().split())
d, e, f = map(int, input().split())
sum=0
if a<d:
sum=sum+(d-a)
if b<e:
sum=sum+(e-b)
if c<f:
sum=sum+(f-c)
print(sum)
|
cs |
'공부 > 코딩테스트' 카테고리의 다른 글
백준: 15025번 Judging Moose (Python3) (0) | 2022.08.06 |
---|---|
백준: 15051번 Máquina de café (Python3) (0) | 2022.08.06 |
백준: 15080번 Every Second Counts (Python3) (0) | 2022.08.06 |
백준: 15128번 Congruent Numbers (Python3) (0) | 2022.08.06 |
백준: 15439번 Vera and Outfits (Python3) (0) | 2022.08.06 |
댓글