| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5721 | 陈万瑄 | 打印图形 | C++ | Accepted | 100 | 0 MS | 244 KB | 176 | 2020-08-15 08:18:15 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<" *"<<endl; cout<<" ***"<<endl; cout<<"*****"<<endl; cout<<" ***"<<endl; cout<<" *"; return 0; }