Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
49880 | Koddo | 单词排序 | Python3 | Presentation Error | 27 MS | 3664 KB | 188 | 2024-07-30 00:14:25 |
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])