[백준] #10811 바구니 뒤집기 python
2023. 3. 14. 06:00
https://www.acmicpc.net/problem/10811
📕 설명 📕
아래와 같이 for 문과 reversed를 사용하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N, M = map(int, input().split())
li = [i for i in range(N+1)]
for _ in range(M):
i,j = map(int, input().split())
li[i:j+1] = reversed(li[i:j+1])
li.remove(li[0])
print(*li)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #11718 그대로 출력하기 python (0) | 2023.03.16 |
---|---|
[백준] #9086 문자열 python (1) | 2023.03.15 |
[백준] #10813 공 바꾸기 python (1) | 2023.03.13 |
[백준] #10810 공 넣기 python (0) | 2023.03.12 |
[백준] 10951 A + B - 4 python (0) | 2023.03.11 |