Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85613 丁俊杰 22插入数据 Python3 Accepted 44 MS 3772 KB 136 2024-07-18 23:10:26

Tests(10/10):


Code:

n=int(input()) a=list(map(int,input().split())) m=int(input()) a.append(m) a.sort(reverse=True) for i in a: print(i,end=" ")