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
- MySQL
- 정렬
- 수학
- 그리디 알고리즘
- 문자열
- 써니나타스
- php
- C
- 구현
- 사칙연산
- Web
- SuNiNaTas
- Database
- 인코그니토
- CTF
- 백준
- Network
- writeup
- Forensics
- xcz.kr
- Python
- HackCTF
- misc
- Web Hacking
- N0Named
- wargame
- Digital Forensics
- Incognito
- Text
- cryptography
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10101번 삼각형 외우기 본문
[Baekjoon/Python3] 10101번 삼각형 외우기
nums = [int(input()) for i in range(3)]
if set(nums) == {60}: # set() -> {}
print('Equilateral')
elif sum(nums) == 180 and len(set(nums)) == 2:
print('Isosceles')
elif sum(nums) == 180 and len(set(nums)) == 3:
print('Scalene')
elif sum(nums) != 180:
print('Error')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10156번 과자 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10103번 주사위 게임 (0) | 2020.12.06 |
[Baekjoon/Python3] 10039번 평균 점수 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 9654번 나부 함대 데이터 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 9653번 스타워즈 로고 (0) | 2020.12.06 |
Comments