| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 325361 | 123456 | 【C4-4】n个一位数能够组成的最小数 | Python3 | Accepted | 100 | 59 MS | 3760 KB | 208 | 2025-06-06 16:40:55 |
n=int(input()) a=list(map(int,input().split())) a.sort() c=a.count(0) for i in a: if i!=0: print(i,end='') break print('0'*c,end='') for i in range(c+1,n): print(a[i],end='')