Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153484 王一诺 数组倒序输出 Python3 Accepted 43 MS 3744 KB 58 2026-05-17 16:27:24

Tests(1/1):


Code:

input() a=list(map(int,input().split())) print(*a[::-1])