Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108773 | 伍长辉 | 寻找第二小的数 | Python3 | Compile Error | 0 MS | 0 KB | 243 | 2025-01-21 20:00:02 |
n=int(input()) for x in range(n): m=int(input()) a=input.split() a=[int(x) for x in a] b=min(a) for x in range(a.count(b)): a.remove(b) if len(a)==0: print('No') else: c=min(a) print(c)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 9)