본문 바로가기
Algorithm

[구현/수학] 백준 14038 Tournament Selection - 파이썬(Python)

by jangThang 2022. 9. 14.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    14038번: Tournament Selection

    The output will be either 1, 2, 3 (to indicate which Group the player should be placed in) or -1 (to indicate the player has been eliminated).

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     1~6경기까지의 경기결과가 주어집니다. 이긴 경기가 2번 이하이면 그룹 '3', 4번 이하이면 그룹 '2',  5번 이상이면 그룹 '1'에 배치됩니다. 이긴 횟수를 계산해서 배치된 그룹을 구합니다.

     

     

     

    3. 코드

    # 입력
    win = 0
    for _ in range(6):
        if input() == 'W':
            win += 1
    
    # 출력
    if win == 0:
        print(-1)
    elif win <= 2:
        print(3)
    elif win <= 4:
        print(2)
    else:
        print(1)

     

     

    star가 되고나서 Tistory

    반응형

    댓글