| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151279 | 王培臻 | 数字金字塔 | C++ | Accepted | 2 MS | 272 KB | 275 | 2026-04-11 14:40:54 |
#include<bits/stdc++.h> using namespace std; int main() { long long a,s=1; cin>>a; for(int i=1;i<=a;i++){ for(int d=1;d<=a-i;d++){ cout<<" "; } for(int j=1;j<=2*i-1;j++){ cout<<i; } cout<<endl; } return 0; }