Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132013 叶航帅 数组倒序输出 Python3 Accepted 46 MS 3748 KB 87 2025-10-03 20:18:00

Tests(1/1):


Code:

n = int(input()) nums = input().split() print(' '.join(reversed(nums[:n])) + ' ')