Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109678 丁俊杰 数组倒序输出 Python3 Accepted 35 MS 3756 KB 90 2025-02-10 14:17:13

Tests(1/1):


Code:

n=int(input()) a=list(map(int,input().split())) a=a[::-1] #将列表a倒序 print(*a)