| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5753 | 朱彦宇 | 打印图形 | C++ | Accepted | 100 | 0 MS | 240 KB | 194 | 2020-08-15 08:32:13 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<" *"<<endl; cout<<" ***"<<endl; cout<<"*****"<<endl; cout<<" ***"<<endl; cout<<" *"<<endl; return 0; }