반응형
Recent Posts
Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- Python 20001
- 스택
- BOJ
- python 1259
- 항해99
- 프로그래머스
- leetcode 2405
- 구현
- 백준 2309
- 파이썬
- 개발자 취업
- python 10250
- python 10989
- 백준 카드1
- 백준 막대기
- python 2309
- 백준 팰린드롬수
- 일곱 난쟁이
- boj 2309
- til
- 코딩테스트 준비
- 백준
- BFS
- softeer
- 큐
- 99클럽
- Python
- python 14503
- 99항해
Archives
- Today
- Total
동까의 코딩
[Python] 백준 2161 : 카드1 본문
반응형
기본적인 구현문제인 카드1 문제를 풀어보았다.
https://www.acmicpc.net/problem/2161
간단한 구현으로 풀이하였다.
from collections import deque
N = int(input())
num_lst = deque([i for i in range(1, N + 1)])
num_lst.reverse()
while num_lst:
cut_num = num_lst.pop()
print(cut_num, end=' ')
if num_lst:
num_lst.appendleft(num_lst.pop())
오늘도 감사합니다.
반응형
'문제 풀이 > 백준' 카테고리의 다른 글
[Python] 백준 2309 : 일곱 난쟁이 (0) | 2024.04.09 |
---|---|
[Python] 백준 14503 : 로봇 청소기 (1) | 2024.04.04 |
[Python] 백준 17608 : 막대기 (0) | 2024.04.03 |
[Python] 백준 20001 : 고무오리 디버깅 (0) | 2024.04.03 |
[Python] 백준 10816 : 숫자 카드 2 (0) | 2024.03.30 |