num_list = list(map(int,input().split()))
count1,count2 = 0,0
for i in range(8):
if num_list[i] == i+1:
count1 += 1
elif num_list[i] == 8-i:
count2 += 1
if count1 == 8:
print("ascending")
elif count2 == 8:
print("descending")
else:
print("mixed")
list(map(int, input().split))은 list[0]부터 sapce로 구분하여 입력받는 것
num_list = list(map(int,input().split()))
ascending = True
descending = True
for i in range(7):
if num_list[i] < num_list[i+1]:
descending = False
elif num_list[i] > num_list[i+1]:
ascending = False
if ascending:
print("ascending")
elif descending:
print("descending")
else:
print("mixed")
'알고리즘 > 백준 (Pyhthon)' 카테고리의 다른 글
[알고리즘] 백준 10930 SHA-256 (0) | 2020.01.27 |
---|---|
[알고리즘] 백준 5397 키로거 (0) | 2020.01.27 |
[알고리즘] 백준 1966 프린터큐 (0) | 2020.01.27 |
[알고리즘] 백준 1874 스택수열 (0) | 2020.01.26 |
[알고리즘] 백준 2798 블랙잭 (0) | 2020.01.23 |