| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 36910 | 陈雨辰 | 2023经开区信息技术合格性考试-3 | Python3 | Accepted | 100 | 39 MS | 4488 KB | 116 | 2024-01-04 15:57:21 |
for i in range(1, 10): for j in range(1, i+1): print(i,"*",j,"=",i*j,end='\t',sep="") print()