Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132454 6倪葭轩 18成绩插入 Python3 Accepted 60 MS 3772 KB 121 2025-10-08 14:12:44

Tests(10/10):


Code:

n = int(input()) b = list(map(int, input().split())) c = int(input()) b.insert(0, c) print(' '.join(map(str, b)))