Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132590 叶航帅 逆序输出 Python3 Accepted 49 MS 3756 KB 84 2025-10-10 21:25:53

Tests(10/10):


Code:

n = int(input()) print(' '.join(map(str, list(map(int, input().split()))[::-1])))