| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76431 | sh25_wanghy | 字符三角形 | C++ | Accepted | 0 MS | 252 KB | 231 | 2025-12-19 14:57:47 |
#include <iostream> using namespace std; int main() { char ch; cin >> ch; cout << " " << ch << endl; cout << " " << ch << ch << ch << endl; cout << ch << ch << ch << ch << ch << endl; return 0; }