[백준] 백준 Python3 10101번 문제 및 소스코드

2024. 10. 8. 13:23Coding/백준-Python

1. 문제 링크

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

2. 문제 

 

3. 소스코드

a = [int(input()) for i in range(3)]
if a.count(60) == 3:
    print("Equilateral")
elif sum(a) == 180 and len(set(a)) == 2:
    print("Isosceles")
elif sum(a) == 180 and len(set(a)) == 3:
    print("Scalene")
else:
    print("Error")