Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143575 丁俊杰 逆序输出 Python3 Accepted 33 MS 3756 KB 108 2026-01-17 10:08:00

Tests(10/10):


Code:

n=int(input()) a=list(map(int,input().split())) a=a[::-1] #将a倒过来 print(*a) #输出a中的元素