Skip to content

Commit dbaf6d9

Browse files
committed
[Bronze III] Title: 삼각형과 세 변, Time: 92 ms, Memory: 108384 KB -BaekjoonHub
1 parent ce1f34a commit dbaf6d9

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

백준/Bronze/5073. 삼각형과 세 변/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44

55
### 성능 요약
66

7-
메모리: 17516 KB, 시간: 212 ms
7+
메모리: 108384 KB, 시간: 92 ms
88

99
### 분류
1010

11-
기하학, 구현, 수학
11+
수학, 구현, 기하학
12+
13+
### 제출 일자
14+
15+
2026년 3월 19일 19:47:07
1216

1317
### 문제 설명
1418

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
while True:
2+
a, b, c = map(int, input().split())
3+
4+
if a == 0 and b == 0 and c == 0:
5+
break
6+
7+
if a + b <= c:
8+
print("Invalid")
9+
elif a == b and b == c:
10+
print("Equilateral")
11+
elif a == b or b == c or c == a:
12+
print("Isosceles")
13+
else:
14+
print("Scalene")

0 commit comments

Comments
 (0)