Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132648 胡皓宇 18离开队伍后的人 Python3 Accepted 57 MS 3772 KB 132 2025-10-12 09:02:55

Tests(10/10):


Code:

n = int(input()) a = list(map(int,input().split())) x = int(input()) a.pop(x-1) for i in range(len(a)): print(a[i],end=" ")