Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 편스토랑 우승상품
- AI 경진대회
- ChatGPT
- Kaggle
- programmers
- Baekjoon
- 더현대서울 맛집
- 파이썬
- 프로그래머스
- github
- 코로나19
- 프로그래머스 파이썬
- Git
- ubuntu
- 데이콘
- 편스토랑
- Real or Not? NLP with Disaster Tweets
- dacon
- hackerrank
- gs25
- 우분투
- leetcode
- Docker
- SW Expert Academy
- 금융문자분석경진대회
- 자연어처리
- 맥북
- 백준
- 캐치카페
- PYTHON
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 4589번 : Gnome Sequencing (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Gnome Sequencing 입니다.
4589번: Gnome Sequencing
In the book All Creatures of Mythology, gnomes are kind, bearded creatures, while goblins tend to be bossy and simple-minded. The goblins like to harass the gnomes by making them line up in groups of three, ordered by the length of their beards. The gnomes
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def gnomes_is_ordered_or_not(gnomes):
is_ordered = False
order_check_list = []
for idx in range(len(gnomes) - 1):
check_num = gnomes[idx] - gnomes[idx+1]
order_check_list.append(check_num < 0)
if len(set(order_check_list)) == 1:
is_ordered = True
return is_ordered
def gnome_sequencing(gnomes_list):
print("Gnomes:")
for gnomes in gnomes_list:
is_ordered = gnomes_is_ordered_or_not(gnomes)
if is_ordered:
print("Ordered")
else:
print("Unordered")
if __name__ == "__main__":
gnomes_list = []
N = int(input())
for _ in range(N):
gnomes = list(map(int, input().split()))
gnomes_list.append(gnomes)
gnome_sequencing(gnomes_list)
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2684번 : 동전 게임 (Python) (0) | 2022.07.15 |
---|---|
[BaekJoon] 25311번 : UCPC에서 가장 쉬운 문제 번호는? (Python) (0) | 2022.07.14 |
[BaekJoon] 17009번 : Winning Score (Python) (0) | 2022.07.11 |
[BaekJoon] 25314번 : 코딩은 체육과목 입니다 (Python) (0) | 2022.07.10 |
[BaekJoon] 11945번 : 뜨거운 붕어빵 (Python) (0) | 2022.07.08 |