| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 341059 | 丁虞轩 | 【C4-T】拐角III | C++ | 通过 | 100 | 1 MS | 244 KB | 224 | 2025-08-17 14:02:12 |
#include<bits/stdc++.h> using namespace std; int n; int main(){ cin>>n; for(int j=n;j>=1;j--){ for(int i=n;i>=1;i--){ if(i>=j)cout<<setw(3)<<i; else cout<<setw(3)<<j; } cout<<endl; } return 0; }