Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134642 叶航帅 逆序输出 Python3 Accepted 49 MS 3764 KB 141 2025-10-29 21:21:34

Tests(10/10):


Code:

n = int(input().strip()) if n == 0: input() print() else: dasb = input().split() print(' '.join(dasb[::-1]))