BOJ 2920. 음계 (Python)
2021. 2. 5. 23:13ㆍProblem Solving/BOJ
BOJ 2920. 음계
https://www.acmicpc.net/problem/2920
Solution
play = list(map(int, input().split()))
tmp = []
for i in range(1, 8):
if play[i-1] < play[i]:
tmp.append(1)
else:
tmp.append(-1)
if 1 in tmp and -1 in tmp:
print('mixed')
elif 1 in tmp and -1 not in tmp:
print('ascending')
elif -1 in tmp and 1 not in tmp:
print('descending')
반응형
'Problem Solving > BOJ' 카테고리의 다른 글
BOJ 11654. 아스키 코드 (C, Python) (0) | 2021.02.06 |
---|---|
BOJ 8958. OX퀴즈 (Python) (0) | 2021.02.05 |
BOJ 2639. 구구단 (Python) (0) | 2021.02.05 |
BOJ 2675. 문자열 반복 (Python) (0) | 2021.02.05 |
BOJ 2667. 단지 번호 붙이기 (Python) (0) | 2021.01.27 |