백준(Python) 풀이/구현

백준(Python) 17009번 Winning Score 풀이

개발윗미 2021. 12. 6. 11:03

Python으로 구현한 17009번 Winning Score 문제 풀이입니다.

 

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

 

17009번: Winning Score

The first three lines of input describe the scoring of the Apples, and the next three lines of input describe the scoring of the Bananas. For each team, the first line contains the number of successful 3-point shots, the second line contains the number of

www.acmicpc.net


apple = 0
banana = 0

for i in range(3, 0, -1) :
  apple += i * int(input())

for i in range(3, 0, -1) :
  banana += i * int(input())

if apple == banana :
  print('T')
elif apple > banana : 
  print('A')
else :
  print('B')

 

1. 각 입력받는 3개의 점수는 3점, 2점, 1점 순으로 입력되기 때문에 단순히 반복문을 통해 3부터 1(포함)까지 1씩 감소하면서 

 

   범위를 지정하고 수행할 수 있다.

 

2. 조건문을 통해 사과의 점수와 바나나의 점수가 동일하다면 'T'를 출력한다.

 

3. 사과의 점수가 바나나의 점수보다 크다면 'A를 출력하고, 반대일 경우 'B'를 출력한다.