https://www.codetree.ai/missions/2/problems/jenga-1d/description
import sys
input = sys.stdin.readline
n = int(input())
arr = []
for _ in range(n):
arr.append(int(input()))
for _ in range(2):
s, e = map(int, input().split(" "))
del arr[s-1:e]
print(len(arr))
for a in arr:
print(a)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 문자에 따른 명령 2 Python (0) | 2024.07.29 |
---|---|
[Codetree] 방향에 맞춰 이동 Python (0) | 2024.07.29 |
[Codetree] 삼각형 컨베이어 벨트 Python (0) | 2024.07.27 |
[Codetree] 컨베이어 벨트 Python (0) | 2024.07.27 |
[Codetree] 행복한 수열의 개수 Python (1) | 2024.07.23 |