JiSoo's Devlog

[백준 / 파이썬] 2920번 음계 본문

코테준비

[백준 / 파이썬] 2920번 음계

지숭숭숭 2024. 1. 8. 11:56

a = list(map(int, input().split()))

if a == sorted(a):
    print("ascending")
elif a == sorted(a, reverse = True):
    print("descending")
else:
    print("mixed")

 

sorted 함수를 이용해 순서대로 정렬했을 때와 같으면 ascending 출력

거꾸로 정렬했을 때와 같으면 descending 출력

 

728x90