https://www.acmicpc.net/problem/2920
풀이
단순한 구현이다.
# 2920번 음계
numbers = list(map(int, input().split()))
asc = [1, 2, 3, 4, 5, 6, 7, 8]
dsc = list(reversed(asc))
if numbers == asc:
print("ascending")
elif numbers == dsc:
print("descending")
else:
print("mixed")
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준] 2108번 통계학 - 파이썬 (0) | 2022.02.21 |
---|---|
[백준] 2475번 검증수 - 파이썬 (0) | 2022.02.20 |
[백준] 4150번 피보나치 수 - 파이썬 (0) | 2022.02.19 |
[백준] 2563번 색종이 - 파이썬 (0) | 2022.02.16 |
[백준][Python] 1037번 약수 - 코팩 (0) | 2022.02.14 |