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 | 31 |
Tags
- PYTHON
- Kaggle
- 편스토랑
- programmers
- 편스토랑 우승상품
- AI 경진대회
- 코로나19
- ChatGPT
- 더현대서울 맛집
- dacon
- 우분투
- github
- 백준
- 프로그래머스 파이썬
- 프로그래머스
- SW Expert Academy
- hackerrank
- Docker
- 금융문자분석경진대회
- ubuntu
- Git
- leetcode
- 맥북
- 데이콘
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- 자연어처리
- gs25
- 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2947번 : 나무 조각 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 나무 조각 입니다.
👨🏻💻 코드 ( Solution )
def piece_of_wood(piece_list):
answer_list = []
final_result = sorted(piece_list)
copy_piece_list = [piece for piece in piece_list]
is_break = False
while True:
for idx in range(len(piece_list) - 1):
if copy_piece_list[idx] > copy_piece_list[idx+1]:
copy_piece_list[idx], copy_piece_list[idx+1] = copy_piece_list[idx+1], copy_piece_list[idx]
if piece_list != copy_piece_list:
answer_list.append(" ".join(list(map(str, copy_piece_list))))
if copy_piece_list == final_result:
is_break = True
if is_break:
break
return answer_list
def print_answer(answer_list):
for answer in answer_list:
print(answer)
if __name__ == "__main__":
piece_list = list(map(int, input().split()))
answer_list = piece_of_wood(
piece_list=piece_list
)
print_answer(
answer_list=answer_list
)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 26768번 : H4x0r (Python) (0) | 2023.01.03 |
---|---|
[BaekJoon] 13717번 : 포켓몬 GO (Python) (0) | 2023.01.02 |
[BaekJoon] 5691번 : 평균 중앙값 문제 (Python) (0) | 2022.12.31 |
[BaekJoon] 11557번 : Yangjojang of The Year (Python) (0) | 2022.12.30 |
[BaekJoon] 6825번 : Body Mass Index (Python) (0) | 2022.12.29 |
Comments