| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123118 | 胡海峰老师 | 奇偶位互换 | Python3 | Compile Error | 0 MS | 0 KB | 176 | 2025-06-28 09:54:56 |
n = int(input()) for x in range(n): bins = input() lst= list(bins) for i in range(0,len(bins),2): lst[i],lst[i+1]=lst[i+1],lst[i] print( "".join(lst))
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)