꾸준히 합시다
백준 파이썬 16337번: Die 본문
https://www.acmicpc.net/problem/16337
문제 유형: 구현, 문자열
# Solution 1
first = input()
second = input()
third = input()
if first == ":::" and second == ":o:" and third == ":::":
print(1)
elif (first == "o::" and second == ":::" and third == "::o") or (first == "::o" and second == ":::" and third == "o::"):
print(2)
elif (first == "o::" and second == ":o:" and third == "::o") or (first == "::o" and second == ":o:" and third == "o::"):
print(3)
elif first == "o:o" and second == ":::" and third == "o:o":
print(4)
elif first == "o:o" and second == ":o:" and third == "o:o":
print(5)
elif (first == "ooo" and second == ":::" and third == "ooo") or (first == "o:o" and second == "o:o" and third == "o:o"):
print(6)
else:
print("unknown")
'코딩 테스트 문제 풀이' 카테고리의 다른 글
백준 파이썬 16360번: Go Latin (0) | 2021.06.15 |
---|---|
백준 파이썬 13288번: A New Alphabet (0) | 2021.06.14 |
백준 파이썬 3486번: Adding Reversed Numbers (0) | 2021.06.12 |
백준 파이썬 4714번: Lunacy (0) | 2021.06.11 |
백준 파이썬 9094번: 수학적 호기심 (0) | 2021.04.15 |
Comments