본문 바로가기
Algorithm

[구현/수학] 백준 13623 Zero or One - 파이썬(Python)

by jangThang 2022. 10. 8.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    13623번: Zero or One

    Everyone probably knows the game Zero or One (in some regions in Brazil also known as Two or One), used to determine a winner among three or more players. For those unfamiliar, the game works as follows. Each player chooses a value between zero or one; pro

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     세 사람이 0 또는 1 중에 하나를 선택합니다. 어느 한 사람만 0 또는 1을 선택했다면, 그 사람이 승리합니다. 단, 모두 0 또는 1을 고른 경우에는 승자가 없습니다.

     

     

     

    3. 코드

    # 입력
    a, b, c = map(int, input().split())
    
    # 출력
    if (a == 1 and b == c == 0) or (a == 0 and b == c == 1):
        print("A")
    elif (b == 1 and a == c == 0) or (b == 0 and a == c == 1):
        print("B")
    elif (c == 1 and a == b == 0) or (c == 0 and a == b == 1):
        print("C")
    else:
        print("*")

     

     

    star가 되고나서 Tistory

    반응형

    댓글