| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82132 | sh25_shenpy | 画三角形 | C++ | Accepted | 0 MS | 248 KB | 289 | 2026-01-10 17:26:34 |
#include<bits/stdc++.h> using namespace std; char s='A'; int main(){ int n; cin>>n; for(int i=1;i<=n;++i){ for(int j=1;j<=i;++j){ cout<<(char)s; ++s; if(s>'Z') s='A'; } cout<<endl; } return 0; }