일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 알고리즘
- 스택
- 재귀 함수
- format 메서드
- NQueen
- 동적 계획
- 유닉스
- 그리디
- 그래프
- type 함수
- 순차 탐색
- MiniHeap
- sys.stdin.readline()
- 기초
- 탐색
- Git
- 자료구조
- UNIX
- IT
- git hub
- 트리
- 이진 탐색
- 문법
- 배열
- 자기개발
- 분할 정복
- 백준
- 우분투
- 파이썬
- 정렬
Archives
- Today
- Total
코딩고치
[파이썬][백준] 음계 본문
1. 문제
주소: https://www.acmicpc.net/problem/2920
문제 유형: 배열
2. 소스 코드
scales = list(map(int, input().split()))
ascending = True
descending = True
for i in range(len(scales) - 1):
if scales[i] < scales[i + 1]:
descending = False
else:
ascending = False
if ascending:
print('ascending')
elif descending:
print('descending')
else:
print('mixed')
'파이썬 > 백준 문제' 카테고리의 다른 글
[파이썬][백준] 10930번: SHA-256 (0) | 2020.05.22 |
---|---|
[파이썬][백준] 5397번: 키로거 (0) | 2020.05.22 |
[파이썬][백준] 프린터 큐 (0) | 2020.05.21 |
[파이썬][백준] 스택 수열 (0) | 2020.05.21 |
[파이썬][백준] 블랙잭 (0) | 2020.05.21 |
Comments