| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 318260 | gyszliujiarui25 | 星号三角阵(三) T2 | Python3 | Accepted | 42 MS | 6228 KB | 134 | 2026-04-22 16:14:31 |
n = int(input()) # 循环 n 行 for i in range(n): # 打印 i 个空格 + (n-i) 个星号 print(' ' * i + '*' * (n - i))