[구현/수학] 백준 17009 Winning Score - 파이썬(Python)


[구현/수학] 백준 17009 Winning Score - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 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 2. 문제 풀이 농구 점수를 계산하고, 승패를 판별하는 문제입니다. 3. 코드 apple = 0 banana = 0 # 입력 for i i..


원문링크 : [구현/수학] 백준 17009 Winning Score - 파이썬(Python)