| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 315808 | 董睿腾 | 星号三角阵(三) T2 | C++ | Presentation Error | 5 MS | 700 KB | 243 | 2026-04-13 17:47:54 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i=n;i>=1;i--) { for(int j=1;j<=i;j++) { cout<<"*"; } cout<<endl; } return 0; }