Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SuNiNaTas
- C
- writeup
- Database
- 정렬
- CTF
- xcz.kr
- 문자열
- N0Named
- 그리디 알고리즘
- Digital Forensics
- Text
- wargame
- cryptography
- 구현
- 백준
- Network
- Python
- 사칙연산
- 써니나타스
- 인코그니토
- 수학
- Forensics
- MySQL
- Web
- Incognito
- php
- misc
- HackCTF
- Web Hacking
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5073번 삼각형과 세 변 본문
[Baekjoon/Python3] 5073번 삼각형과 세 변
while True:
nums = [int(i) for i in input().split()]
if (nums[0], nums[1], nums[2]) == (0, 0, 0):
break
else:
nums.sort()
if nums[2] < sum(nums[:2]):
l = len(set(nums))
if l == 1:
print('Equilateral')
elif l == 2:
print('Isosceles')
else:
print('Scalene')
else:
print('Invalid')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5218번 알파벳 거리 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5086번 배수와 약수 (0) | 2020.12.05 |
[Baekjoon/Python3] 5063번 TGN (0) | 2020.12.05 |
[Baekjoon/Python3] 4880번 다음수 (0) | 2020.12.04 |
[Baekjoon/Python3] 4796번 캠핑 (0) | 2020.12.04 |
Comments