Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
49887 Yumonx 单词排序 Python3 输出格式错误 29 MS 3668 KB 188 2024-07-30 02:42:39

Tests(0/1):


st = list(input().split(' ')) st.sort() for i in range(len(st)): if st[i]==' ': pass elif i==0: print(st[i]) elif st[i] != st[i-1]: print(st[i])


测评信息: