[BOJ]#2920 음계 Python

현지·2021년 2월 3일
2

BOJ

목록 보기
2/44

문제

https://www.acmicpc.net/problem/2920

다장조는 c d e f g a b C, 총 8개 음으로 이루어져있다. 이 문제에서 8개 음은 다음과 같이 숫자로 바꾸어 표현한다. c는 1로, d는 2로, ..., C를 8로 바꾼다.

1부터 8까지 차례대로 연주한다면 ascending, 8부터 1까지 차례대로 연주한다면 descending, 둘 다 아니라면 mixed 이다.

연주한 순서가 주어졌을 때, 이것이 ascending인지, descending인지, 아니면 mixed인지 판별하는 프로그램을 작성하시오.

입력

첫째 줄에 8개 숫자가 주어진다. 이 숫자는 문제 설명에서 설명한 음이며, 1부터 8까지 숫자가 한 번씩 등장한다.

출력

첫째 줄에 ascending, descending, mixed 중 하나를 출력한다.

아이디어

  1. list로 입력을 받는다.
  2. 1~8까지의 숫자를 하나씩 비교한다.
  3. 차례로 증가하면 'ascending', 감소하면 'descending' 순서가 섞이면 'mixed'를 출력한다.

내 코드(Python)

num=list(map(int, input().split()))
#증가하는 경우
if num[0]==1:
    i=1
    while i+1==num[i]:
        i+=1
        if i==8:
            print('ascending')
            break
    if i!=8:
        print('mixed')
#감소하는 경우
elif num[0]==8:
    i=7
    while i==num[8-i]:
        i-=1
        if i==0:
            print('descending')
            break
    if i!=0:
        print('mixed')
else:
    print('mixed')

다른코드

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

ascending = True
descending = True

for i in range(1, 8):
    if a[i] > a[i - 1]:
        descending = False
    elif a[i] < a[i - 1]:
        ascending = False

if ascending:
    print('ascending')
elif descending:
    print('descending')
else:
    print('mixed')

출처 : https://github.com/ndb796/Fast_Campus_Algorithm_Lecture_Notes/blob/master/Solutions/%5B01%5D_1.py

0개의 댓글