1099: 数组元素删除
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:136
Solved:41
Description
输入一个整数数组,删除指定位置 x 开始的 L 个元素,输出删除后的元素
Input
第一行:整数序列,相邻整数用空格分隔
第二行:起始位置 x
第三行:删除长度 L
Output
删除后的整数序列,相邻整数用空格分隔
Sample Input Copy
3 2 1 4 0 5 6
1
2
Sample Output Copy
3 4 0 5 6
HINT
a = list(map(int, input().split()))
x = int(input())
L = int(input())