Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
36681 | yuzhengxun | 字符三角形 | C++ | Accepted | 0 MS | 240 KB | 139 | 2024-01-16 15:06:51 |
#include<iostream> using namespace std; int main() { cout<<" *"<<endl; cout<<" ***"<<endl; cout<<"*****"; return 0; }